-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.config.js
128 lines (115 loc) · 4.01 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const argv = require('yargs').argv;
const CKEditorWebpackPlugin = require( '@ckeditor/ckeditor5-dev-webpack-plugin' );
const { styles } = require( '@ckeditor/ckeditor5-dev-utils' );
const paths = require('./build/paths');
// Set isProduction based on environment or argv.
let isProduction = process.env.NODE_ENV === 'production';
if (argv.production) {
isProduction = true;
}
/**
* Webpack configuration
* Run using "webpack" or "npm run build"
*/
module.exports = {
// Entry points locations.
entry: {
[`${paths.package.name}-css`]: `${__dirname}/${paths.scssEntry}`,
[`${paths.package.name}-api-css`]: `${__dirname}/${paths.scssAPIEntry}`,
[`${paths.package.name}-js`]: `${__dirname}/${paths.jsEntry}`,
'admin_overrides': `${__dirname}/${paths.scssSrcDir}/admin/admin_overrides.scss`,
'fontawesome': `${__dirname}/node_modules/@fortawesome/fontawesome-free/js/all.js`,
},
// (Output) bundle locations.
output: {
path: __dirname + '/' + paths.jsDir,
filename: '[name].js', // file
chunkFilename: '[name].bundle.js',
publicPath: '/static/bundles/',
},
// Plugins
plugins: [
new MiniCssExtractPlugin(),
new CKEditorWebpackPlugin( {
language: 'nl'
} )
],
// Modules
module: {
rules: [
// .js
{
test: /src\/.*.js?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
// ckeditor
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\]icons[/\\][^/\\]+\.svg$/,
use: [ 'raw-loader' ]
},
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css$/,
use: [
{
loader: 'style-loader',
options: {
injectType: 'singletonStyleTag',
attributes: {
'data-cke': true
}
}
},
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: styles.getPostCssConfig( {
themeImporter: {
themePath: require.resolve( '@ckeditor/ckeditor5-theme-lark' )
},
minify: true
} )
}
}
]
},
// .scss
{
test: /(?:src)\/.*\.(sa|sc|c)ss$/,
use: [
// Writes css files.
MiniCssExtractPlugin.loader,
// Loads CSS files.
{
loader: 'css-loader',
options: {
url: false
},
},
// Runs postcss configuration (postcss.config.js).
{
loader: 'postcss-loader'
},
// Compiles .scss to .css.
{
loader: 'sass-loader',
options: {
sassOptions: {
comments: false,
style: 'compressed',
includePaths: [paths.sitePackages],
},
sourceMap: argv.sourcemap
},
},
],
},
]
},
// Use --production to optimize output.
mode: isProduction ? 'production' : 'development',
// Use --sourcemap to generate sourcemap.
devtool: argv.sourcemap ? 'sourcemap' : false,
};