diff options
Diffstat (limited to 'lib/ckeditor5/webpack.config.js')
-rw-r--r-- | lib/ckeditor5/webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ckeditor5/webpack.config.js b/lib/ckeditor5/webpack.config.js index fd5cc3e..38cb5a9 100644 --- a/lib/ckeditor5/webpack.config.js +++ b/lib/ckeditor5/webpack.config.js | |||
@@ -1,5 +1,5 @@ | |||
1 | /** | 1 | /** |
2 | * @license Copyright (c) 2014-2022, CKSource Holding sp. z o.o. All rights reserved. | 2 | * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved. |
3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -10,7 +10,7 @@ | |||
10 | const path = require( 'path' ); | 10 | const path = require( 'path' ); |
11 | const webpack = require( 'webpack' ); | 11 | const webpack = require( 'webpack' ); |
12 | const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' ); | 12 | const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' ); |
13 | const CKEditorWebpackPlugin = require( '@ckeditor/ckeditor5-dev-webpack-plugin' ); | 13 | const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' ); |
14 | const TerserWebpackPlugin = require( 'terser-webpack-plugin' ); | 14 | const TerserWebpackPlugin = require( 'terser-webpack-plugin' ); |
15 | 15 | ||
16 | module.exports = { | 16 | module.exports = { |
@@ -45,7 +45,7 @@ module.exports = { | |||
45 | }, | 45 | }, |
46 | 46 | ||
47 | plugins: [ | 47 | plugins: [ |
48 | new CKEditorWebpackPlugin( { | 48 | new CKEditorTranslationsPlugin( { |
49 | // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format. | 49 | // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format. |
50 | // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js). | 50 | // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js). |
51 | language: 'fr', | 51 | language: 'fr', |