Sfoglia il codice sorgente

Removed invalid returning from create-package task.

See: https://github.com/ckeditor/ckeditor5/commit/a8411f98ac3e9591744b1736b21a87a768e39ca2
Kamil Piechaczek 9 anni fa
parent
commit
be6be396a6
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      dev/tasks/dev/tasks.js

+ 1 - 1
dev/tasks/dev/tasks.js

@@ -47,7 +47,7 @@ module.exports = ( config ) => {
 		},
 
 		createPackage( done ) {
-			return pluginCreateTask( ckeditor5Path, config.WORKSPACE_DIR )
+			pluginCreateTask( ckeditor5Path, config.WORKSPACE_DIR )
 				.then( done )
 				.catch( ( error ) => done( error ) );
 		},