| 123456789101112131415161718 |
- #!/usr/bin/env node
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- const path = require( 'path' );
- const { bundler } = require( '@ckeditor/ckeditor5-dev-utils' );
- const buildConfig = require( '../build-config' );
- console.log( 'Creating the entry file...' );
- bundler.createEntryFile( path.join( 'src', 'ckeditor.js' ), buildConfig );
- console.log( 'Done.' );
|