-
Notifications
You must be signed in to change notification settings - Fork 163
/
webpack.config.js
162 lines (146 loc) · 5.29 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* eslint-env node */
const path = require('path');
const process = require('process');
const baseConfig = require('kolibri-tools/lib/webpack.config.base');
const { merge } = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const BundleTracker = require('kolibri-tools/lib/webpackBundleTracker');
const CircularDependencyPlugin = require('circular-dependency-plugin');
const WebpackRTLPlugin = require('kolibri-tools/lib/webpackRtlPlugin');
const { InjectManifest } = require('workbox-webpack-plugin');
const webpack = require('webpack');
const djangoProjectDir = path.resolve('contentcuration');
const staticFilesDir = path.resolve(djangoProjectDir, 'contentcuration', 'static');
const srcDir = path.resolve(djangoProjectDir, 'contentcuration', 'frontend');
const dummyModule = path.resolve(srcDir, 'shared', 'styles', 'modulePlaceholder.js')
const bundleOutputDir = path.resolve(staticFilesDir, 'studio');
module.exports = (env = {}) => {
const dev = env.dev;
const hot = env.hot;
const base = baseConfig({ mode: dev ? 'development' : 'production', hot, cache: dev, transpile: !dev });
if (String(base.module.rules[1].test) !== String(/\.css$/)) {
throw Error('Check base webpack configuration for update of location of css loader');
}
const rootDir = __dirname;
const rootNodeModules = path.join(rootDir, 'node_modules');
const baseCssLoaders = base.module.rules[1].use;
const workboxPlugin = new InjectManifest({
swSrc: path.resolve(srcDir, 'serviceWorker/index.js'),
swDest: 'serviceWorker.js',
exclude: dev ? [/./] : [/\.map$/, /^manifest.*\.js$/]
});
if (dev) {
// Suppress the "InjectManifest has been called multiple times" warning by reaching into
// the private properties of the plugin and making sure it never ends up in the state
// where it makes that warning.
// https://github.com/GoogleChrome/workbox/blob/v6/packages/workbox-webpack-plugin/src/inject-manifest.ts#L260-L282
// Solution taken from here:
// https://github.com/GoogleChrome/workbox/issues/1790#issuecomment-1241356293
Object.defineProperty(workboxPlugin, "alreadyCalled", {
get() {
return false
},
set() {
// do nothing; the internals try to set it to true, which then results in a warning
// on the next run of webpack.
},
})
}
return merge(base, {
context: srcDir,
entry: {
// Use arrays for every entry to allow for hot reloading.
channel_edit: ['./channelEdit/index.js'],
channel_list: ['./channelList/index.js'],
settings: ['./settings/index.js'],
accounts: ['./accounts/index.js'],
administration: ['./administration/index.js'],
// A simple code sandbox to play with components in
pdfJSWorker: ['pdfjs-dist/build/pdf.worker.entry.js'],
// Utility for taking screenshots inside an iframe sandbox
htmlScreenshot: ['./shared/utils/htmlScreenshot.js'],
},
output: {
filename: dev ? '[name].js' : '[name]-[fullhash].js',
chunkFilename: '[name]-[id]-[fullhash].js',
path: bundleOutputDir,
publicPath: dev ? 'http://127.0.0.1:4000/dist/' : '/static/studio/',
pathinfo: !dev,
},
devServer: {
port: 4000,
headers: {
'Access-Control-Allow-Origin': '*',
},
},
module: {
rules: [
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
},
{
test: /\.styl(us)?$/,
use: baseCssLoaders.concat('stylus-loader'),
},
{
test: /\.less?$/,
use: baseCssLoaders.concat('less-loader'),
},
],
},
resolve: {
alias: {
// explicit alias definitions (rather than modules) for speed
shared: path.resolve(srcDir, 'shared'),
frontend: srcDir,
// needed to reference Vuetify styles in the shadow DOM
vuetify: path.resolve('node_modules', 'vuetify'),
static: staticFilesDir,
},
extensions: ['.js', '.vue', '.css', '.less'],
modules: [rootNodeModules],
},
resolveLoader: {
modules: [rootNodeModules],
},
plugins: [
new BundleTracker({
filename: path.resolve(djangoProjectDir, 'build', 'webpack-stats.json'),
}),
new MiniCssExtractPlugin({
filename: dev ? '[name].css' :'[name]-[fullhash].css',
chunkFilename: dev ? '[name]-[id].css' :'[name]-[fullhash]-[id].css',
}),
new WebpackRTLPlugin({
minify: false,
}),
new CircularDependencyPlugin({
// exclude detection of files based on a RegExp
exclude: /a\.js|node_modules/,
// include specific files based on a RegExp
include: /frontend/,
// add errors to webpack instead of warnings
failOnError: false,
// allow import cycles that include an asyncronous import,
// e.g. via import(/* webpackMode: "weak" */ './file.js')
allowAsyncCycles: false,
// set the current working directory for displaying module paths
cwd: process.cwd(),
}),
workboxPlugin,
].concat(
hot
? []
: [
new webpack.NormalModuleReplacementPlugin(
/vuetify\/src\/stylus\//,
dummyModule
)
]
),
stats: 'normal',
});
};