Przeglądaj źródła

Fixed default gulp task name.

Szymon Kupś 9 lat temu
rodzic
commit
f4f0269874
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -33,7 +33,7 @@ require( './dev/tasks/test/tasks' )( config ).register();
 const ckeditor5Lint = require( 'ckeditor5-dev-lint' )( config );
 gulp.task( 'lint', ckeditor5Lint.lint );
 gulp.task( 'lint-staged', ckeditor5Lint.lintStaged );
-gulp.task( 'default', [ 'build' ] );
+gulp.task( 'default', [ 'compile' ] );
 gulp.task( 'pre-commit', [ 'lint-staged' ] );
 
 // Development environment tasks.