create-entry-file.js 408 B

1234567891011121314151617
  1. #!/usr/bin/env node
  2. /**
  3. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  4. * For licensing, see LICENSE.md.
  5. */
  6. 'use strict';
  7. const { bundler } = require( '@ckeditor/ckeditor5-dev-utils' );
  8. const buildConfig = require( '../build-config' );
  9. console.log( 'Creating the entry file...' );
  10. bundler.createEntryFile( 'ckeditor.js', buildConfig );
  11. console.log( 'Done.' );