8
0

index.js 361 B

1234567891011121314151617181920
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* jshint node: true */
  6. 'use strict';
  7. var path = require( 'path' );
  8. var files = [
  9. path.join( __dirname, '../static/extensions.js' )
  10. ];
  11. module.exports = {
  12. name: 'bender-framework-ckeditor5',
  13. files: files,
  14. include: files
  15. };