diff --git a/bin/build-ckeditor.sh b/bin/build-ckeditor.sh deleted file mode 100755 index d795a27..0000000 --- a/bin/build-ckeditor.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -echo "Building 'build/ckeditor.js'..." -echo "" - -webpack --mode production - -echo "" -echo "Done." diff --git a/bin/create-entry-file.js b/bin/create-entry-file.js deleted file mode 100755 index 8381ae0..0000000 --- a/bin/create-entry-file.js +++ /dev/null @@ -1,18 +0,0 @@ -#!/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.' ); diff --git a/build-config.js b/build-config.js deleted file mode 100644 index 3e53728..0000000 --- a/build-config.js +++ /dev/null @@ -1,61 +0,0 @@ -/** - * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. - * For licensing, see LICENSE.md. - */ - -'use strict'; - -module.exports = { - // The editor creator to use. - editor: '@ckeditor/ckeditor5-editor-balloon/src/ballooneditor', - - // The name under which the editor will be exported. - moduleName: 'BalloonEditor', - - // Plugins to include in the build. - plugins: [ - '@ckeditor/ckeditor5-essentials/src/essentials', - - '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter', - '@ckeditor/ckeditor5-autoformat/src/autoformat', - '@ckeditor/ckeditor5-basic-styles/src/bold', - '@ckeditor/ckeditor5-basic-styles/src/italic', - '@ckeditor/ckeditor5-block-quote/src/blockquote', - '@ckeditor/ckeditor5-easy-image/src/easyimage', - '@ckeditor/ckeditor5-heading/src/heading', - '@ckeditor/ckeditor5-image/src/image', - '@ckeditor/ckeditor5-image/src/imagecaption', - '@ckeditor/ckeditor5-image/src/imagestyle', - '@ckeditor/ckeditor5-image/src/imagetoolbar', - '@ckeditor/ckeditor5-image/src/imageupload', - '@ckeditor/ckeditor5-link/src/link', - '@ckeditor/ckeditor5-list/src/list', - '@ckeditor/ckeditor5-paragraph/src/paragraph' - ], - - // Editor config. - config: { - toolbar: { - items: [ - 'heading', - '|', - 'bold', - 'italic', - 'link', - 'bulletedList', - 'numberedList', - 'imageUpload', - 'blockQuote', - 'undo', - 'redo' - ] - }, - - image: { - toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ] - }, - - // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format. - language: 'en' - } -}; diff --git a/package.json b/package.json index b5c6491..8a6681c 100644 --- a/package.json +++ b/package.json @@ -61,9 +61,7 @@ "url": "https://github.com/ckeditor/ckeditor5-build-balloon.git" }, "scripts": { - "build": "npm run create-entry-file && npm run build-ckeditor", - "create-entry-file": "node bin/create-entry-file.js", - "build-ckeditor": "sh bin/build-ckeditor.sh", + "build": "webpack --mode production", "preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi" } } diff --git a/src/ckeditor.js b/src/ckeditor.js index d8fdaab..c2884ef 100644 --- a/src/ckeditor.js +++ b/src/ckeditor.js @@ -5,18 +5,18 @@ import BalloonEditorBase from '@ckeditor/ckeditor5-editor-balloon/src/ballooneditor'; import EssentialsPlugin from '@ckeditor/ckeditor5-essentials/src/essentials'; -import UploadadapterPlugin from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter'; +import UploadAdapterPlugin from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter'; import AutoformatPlugin from '@ckeditor/ckeditor5-autoformat/src/autoformat'; import BoldPlugin from '@ckeditor/ckeditor5-basic-styles/src/bold'; import ItalicPlugin from '@ckeditor/ckeditor5-basic-styles/src/italic'; -import BlockquotePlugin from '@ckeditor/ckeditor5-block-quote/src/blockquote'; -import EasyimagePlugin from '@ckeditor/ckeditor5-easy-image/src/easyimage'; +import BlockQuotePlugin from '@ckeditor/ckeditor5-block-quote/src/blockquote'; +import EasyImagePlugin from '@ckeditor/ckeditor5-easy-image/src/easyimage'; import HeadingPlugin from '@ckeditor/ckeditor5-heading/src/heading'; import ImagePlugin from '@ckeditor/ckeditor5-image/src/image'; -import ImagecaptionPlugin from '@ckeditor/ckeditor5-image/src/imagecaption'; -import ImagestylePlugin from '@ckeditor/ckeditor5-image/src/imagestyle'; -import ImagetoolbarPlugin from '@ckeditor/ckeditor5-image/src/imagetoolbar'; -import ImageuploadPlugin from '@ckeditor/ckeditor5-image/src/imageupload'; +import ImageCaptionPlugin from '@ckeditor/ckeditor5-image/src/imagecaption'; +import ImageStylePlugin from '@ckeditor/ckeditor5-image/src/imagestyle'; +import ImageToolbarPlugin from '@ckeditor/ckeditor5-image/src/imagetoolbar'; +import ImageUploadPlugin from '@ckeditor/ckeditor5-image/src/imageupload'; import LinkPlugin from '@ckeditor/ckeditor5-link/src/link'; import ListPlugin from '@ckeditor/ckeditor5-list/src/list'; import ParagraphPlugin from '@ckeditor/ckeditor5-paragraph/src/paragraph'; @@ -25,18 +25,18 @@ export default class BalloonEditor extends BalloonEditorBase {} BalloonEditor.builtinPlugins = [ EssentialsPlugin, - UploadadapterPlugin, + UploadAdapterPlugin, AutoformatPlugin, BoldPlugin, ItalicPlugin, - BlockquotePlugin, - EasyimagePlugin, + BlockQuotePlugin, + EasyImagePlugin, HeadingPlugin, ImagePlugin, - ImagecaptionPlugin, - ImagestylePlugin, - ImagetoolbarPlugin, - ImageuploadPlugin, + ImageCaptionPlugin, + ImageStylePlugin, + ImageToolbarPlugin, + ImageUploadPlugin, LinkPlugin, ListPlugin, ParagraphPlugin diff --git a/webpack.config.js b/webpack.config.js index 8410848..e69a6d6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -12,7 +12,6 @@ const webpack = require( 'webpack' ); const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' ); const CKEditorWebpackPlugin = require( '@ckeditor/ckeditor5-dev-webpack-plugin' ); const UglifyJsWebpackPlugin = require( 'uglifyjs-webpack-plugin' ); -const buildConfig = require( './build-config' ); module.exports = { devtool: 'source-map', @@ -21,11 +20,13 @@ module.exports = { entry: path.resolve( __dirname, 'src', 'ckeditor.js' ), output: { + // The name under which the editor will be exported. + library: 'BalloonEditor', + path: path.resolve( __dirname, 'build' ), filename: 'ckeditor.js', libraryTarget: 'umd', - libraryExport: 'default', - library: buildConfig.moduleName + libraryExport: 'default' }, optimization: { @@ -46,7 +47,9 @@ module.exports = { plugins: [ new CKEditorWebpackPlugin( { - language: buildConfig.config.language, + // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format. + // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js). + language: 'en', additionalLanguages: 'all' } ), new webpack.BannerPlugin( {