-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
123 lines (108 loc) · 2.97 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
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const argv = require('yargs').argv
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}-js`]: `${__dirname}/${paths.jsEntry}`,
admin_overrides: `${__dirname}/${paths.scssSrcDir}/admin/admin_overrides.scss`,
'pdf-p': `${__dirname}/${paths.scssSrcDir}/pdf/pdf_portrait.scss`,
'django-admin': `${__dirname}/${paths.jsSrcDir}/django-admin.js`,
},
// (Output) bundle locations.
output: {
path: __dirname + '/' + paths.jsDir,
filename: '[name].js', // file
chunkFilename: '[name].bundle.js',
publicPath: '/static/bundles/',
},
// Plugins
plugins: [new MiniCssExtractPlugin()],
// Modules
module: {
rules: [
// 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,
}),
},
},
],
},
// .js
{
test: /src\/.*.js?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
// .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',
},
sourceMap: argv.sourcemap,
},
},
],
},
],
},
// Use --production to optimize output.
mode: isProduction ? 'production' : 'development',
// Use --sourcemap to generate sourcemap.
devtool: argv.sourcemap ? 'sourcemap' : false,
}