Browse Source

Passing configuration object to ckeditor5-dev-env tasks.

Szymon Kupś 9 years ago
parent
commit
df1cabb1e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gulpfile.js

+ 1 - 1
gulpfile.js

@@ -29,7 +29,7 @@ gulp.task( 'default', [ 'build' ] );
 gulp.task( 'pre-commit', [ 'lint-staged' ] );
 
 // Development environment tasks.
-const ckeditor5DevEnv = require( 'ckeditor5-dev-env' )( config.WORKSPACE_DIR );
+const ckeditor5DevEnv = require( 'ckeditor5-dev-env' )( config );
 gulp.task( 'init', ckeditor5DevEnv.initRepository );
 gulp.task( 'create-package', ckeditor5DevEnv.createPackage );
 gulp.task( 'update', ckeditor5DevEnv.updateRepositories );