-
Notifications
You must be signed in to change notification settings - Fork 80
/
webpack.config.js
56 lines (51 loc) · 1.58 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
const Path = require('path');
const { JavascriptWebpackConfig, CssWebpackConfig } = require('@silverstripe/webpack-config');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ENV = process.env.NODE_ENV;
const PATHS = {
MODULES: 'node_modules',
ROOT: Path.resolve(),
SRC: Path.resolve('client/src'),
DIST: Path.resolve('client/dist'),
DIST_JS: Path.resolve('client/dist/js'),
LEGACY_SRC: Path.resolve('client/src/legacy'),
};
const jsConfig = new JavascriptWebpackConfig('js', PATHS, 'silverstripe/comments')
.setEntry({
CommentsInterface: `${PATHS.LEGACY_SRC}/CommentsInterface.js`,
})
.mergeConfig({
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: `${PATHS.MODULES}/jquery/dist/jquery.min.js`,
to: PATHS.DIST_JS
},
{
context: `${PATHS.MODULES}/jquery-validation/dist`,
from: '**/*.min.js',
to: `${PATHS.DIST_JS}/jquery-validation/`
},
],
}),
],
})
.getConfig();
// Don't apply any externals, as this js will be used on the front-end.
jsConfig.externals = {};
const config = [
// Main JS bundle
jsConfig,
// sass to css
new CssWebpackConfig('css', PATHS)
.setEntry({
comments: `${PATHS.SRC}/styles/comments.scss`,
cms: `${PATHS.SRC}/styles/cms.scss`,
})
.getConfig(),
];
// Use WEBPACK_CHILD=js or WEBPACK_CHILD=css env var to run a single config
module.exports = (process.env.WEBPACK_CHILD)
? config.find((entry) => entry.name === process.env.WEBPACK_CHILD)
: config;