Selaa lähdekoodia

Fixed invalid file names.

Kamil Piechaczek 8 vuotta sitten
vanhempi
commit
8ccda93b12

+ 3 - 3
packages/ckeditor5-build-classic/bin/build.js

@@ -11,8 +11,8 @@ const webpack = require( 'webpack' );
 const tasks = require( '@ckeditor/ckeditor5-dev-bundler-rollup' );
 
 const config = require( '../build-config' );
-const getWebpackEs6Config = require( '../dev/webpackEs6Config' );
-const getWebpackConfig = require( '../dev/webpackConfig' );
+const getWebpackConfig = require( '../dev/getwebpackconfig' );
+const getWebpackEs6Config = require( '../dev/getwebpackes6config' );
 
 console.log( 'Creating an entry file...' );
 
@@ -31,7 +31,7 @@ Promise.all( [
 		runWebpack( webpackConfig, 'ES5' ),
 	] )
 	.then( () => {
-
+		console.log( 'Finished.' );
 	} )
 	.catch( ( err ) => {
 		process.exitCode = -1;

+ 1 - 1
packages/ckeditor5-build-classic/dev/webpackConfig.js

@@ -6,7 +6,7 @@
 'use strict';
 
 const webpack = require( 'webpack' );
-const getWebpackEs6Config = require( './webpackEs6Config' );
+const getWebpackEs6Config = require( './getwebpackes6config' );
 
 module.exports = function getWebpackConfig( destinationPath, moduleName ) {
 	const config = getWebpackEs6Config( destinationPath, moduleName );

packages/ckeditor5-build-classic/dev/webpackEs6Config.js → packages/ckeditor5-build-classic/dev/getwebpackes6config.js