-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
75 lines (74 loc) · 1.68 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
const webpack = require( 'webpack' );
const path = require( 'path' );
const ReqFrom = require( 'webpack-require-from' );
const CssExtrt = require( 'mini-css-extract-plugin' );
const FixEntry = require( 'webpack-fix-style-only-entries' );
const NODE_ENV = process.env.NODE_ENV || 'development';
module.exports = {
entry: {
plugin: [
path.resolve( __dirname, 'index.js' )
],
style: [ './src/scss/style.scss' ],
editor: [ './src/scss/editor.scss' ]
},
output: {
path: path.resolve( __dirname, 'dist' ),
filename: '[name].bundle.js',
chunkFilename: '[name].js',
publicPath: '',
jsonpFunction: 'illustrationsJSONP'
},
mode: NODE_ENV,
devtool: 'production' === process.env.NODE_ENV ? '(none)' : 'source-map',
module: {
rules: [
{
test: /\.(js|jsx|mjs)$/,
exclude: [ /node_modules/ ],
use: {
loader: "babel-loader",
options: {
babelrc: false,
presets: [ '@babel/preset-env', '@babel/preset-react' ],
plugins: [ '@babel/plugin-syntax-dynamic-import', 'webpack-chunkname' ]
}
}
},
{
test: /\.(css|scss)$/,
use: [ {
loader: CssExtrt.loader
},
'css-loader',
{
loader: 'postcss-loader',
options: {
plugins: [
require( 'autoprefixer' )
]
}
},
{
loader: 'sass-loader',
query: {
outputStyle:
'production' === process.env.NODE_ENV ? 'compressed' : 'nested'
}
} ]
}
]
},
plugins: [
new webpack.DefinePlugin( {
'process.env.NODE_ENV': JSON.stringify( NODE_ENV )
} ),
new ReqFrom( {
variableName: 'illustrationsBlock.pluginDirUrl'
} ),
new FixEntry(),
new CssExtrt( {
filename: '../dist/css/[name].css',
} )
]
};