forked from codecombat/codecombat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.base.config.js
307 lines (295 loc) · 10.9 KB
/
webpack.base.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
// NOTE: Don't use this config by itself! It is just a parent for the dev and production configs.
const _ = require('lodash')
const path = require('path')
const webpack = require('webpack')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const glob = require('glob')
require('coffee-script')
require('coffee-script/register')
const product = process.env.COCO_PRODUCT || 'codecombat'
const productSuffix = { codecombat: 'coco', ozaria: 'ozar' }[product]
require.extensions[`.${productSuffix}.coffee`] = require.extensions['.coffee']
const CompileStaticTemplatesPlugin = require('./compile-static-templates')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const PWD = process.env.PWD || __dirname
const fs = require('fs')
const { publicFolderName } = require('./development/utils')
console.log(`Starting Webpack for product ${product}`)
class ProductResolverPlugin {
apply(resolver) {
resolver.ensureHook(this.target)
resolver
.getHook("undescribed-raw-file")
.tapAsync('ProductResolver', (request, ctx, cb) => {
//console.log(request)
cb()
})
resolver
.getHook("resolveStep")
.tap('ProductResolver', function(hook, request) {
if (/node_modules/.test(request.path)) return
if (!request.relativePath) return
if (/\.import\.(sass|scss)$/.test(request.path)) {
request.path = request.path.replace(/\.import\.(sass|scss)/, `.${productSuffix}.$1`)
return
}
// TODO: test this regex
let match = request.path.match(new RegExp(`([a-z]+)\\.${productSuffix}\\.\\1$`))
if (!match) return
let fixed = request.path.substr(0, match.index) + productSuffix + '.' + match[1]
//console.log("YYY", match[0], request.path, fixed)
request.path = fixed
//if (fs.existsSync(fixed)) {
// console.log("X", request.path, request.relativePath)
//}
})
}
}
// Main webpack config
module.exports = (env) => {
if (!env) env = {}
return {
context: path.resolve(PWD),
entry: {
// NOTE: If you add an entrypoint, consider updating ViewLoadTimer to track its loading.
app: './app/app.js',
world: glob.sync('./app/lib/world/**/*.*').concat([ // For worker_world
'./app/lib/worldLoader',
'./app/core/CocoClass',
'./app/core/utils',
'./vendor/scripts/string_score.js',
'./bower_components/underscore.string',
'./vendor/scripts/coffeescript.js'
]),
lodash: 'lodash', // For worker_world
aether: './app/lib/aether/aether.coffee' // For worker_world
// esper: './bower_components/esper.js/esper.js',
// vendor: './app/vendor.js'
},
output: {
filename: 'javascripts/[name].js', // TODO: Use chunkhash in layout.static.pug's script tags instead of GIT_SHA
// chunkFilename is determined by build type
path: path.resolve(PWD, publicFolderName),
publicPath: '/' // Base URL path webpack tries to load other bundles from
},
module: {
noParse: function (name) { // These are already built into commonjs bundles
return _.any([
/vendor.*coffeescript/,
/bower_components.*aether/,
/bower_components.*jsondiffpatch.*\.js$/,
/fuzzaldrin/
], (regex) => { return regex.test(name) })
},
rules: [
{ test: require.resolve('cookieconsent'), use: 'exports-loader?cookieconsent' },
{ test: /\.vue$/, use: [{ loader: 'vue-loader' }] },
{ test: /vendor\/scripts\/async.js/, use: [ { loader: 'imports-loader?root=>window' } ] },
{
test: /\.worker\.(c|m)?js$/i,
loader: "worker-loader",
options: {
esModule: false,
},
},
{ test: /\.js$/,
exclude: /(node_modules|bower_components|vendor)/,
use: [{
loader: 'babel-loader'
}]
},
{ test: /\.coffee$/,
use: [
{ loader: 'coffee-loader' }
] },
{ test: /\.pug$/,
oneOf: [
// applies to <template lang="pug"> in Vue components
{
resourceQuery: /^\?vue/,
//use: ['pug-plain-loader']
use: ['vue-pug-loader']
},
// applies to all other pug imports
{
use: { loader: 'pug-loader', options: { root: path.resolve('./app') } }
}
]
},
{
oneOf: [
{ test: /jquery-ui.*css$/,
use: [ // So we can ignore the images it references that we are missing
{ loader: 'style-loader' },
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false
}
},
{ loader: 'css-loader', options: { url: false } }
] },
{ test: /\.css$/,
use: [
{ loader: 'style-loader' },
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false
}
},
{
loader: 'css-loader',
options: {
url: false
}
},
] }
]
},
{ test: /\.sass$/,
use: [
'vue-style-loader',
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false
}
},
{
loader: 'css-loader',
options: {
url: false
}
},
{
loader: 'sass-loader',
options: {
implementation: require("sass"),
sassOptions: {
indentedSyntax: true
}
}
},
{ loader: 'import-glob-loader' }
]
},
{ test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false
}
},
{
loader: 'css-loader',
options: {
url: false
}
},
{
loader: 'sass-loader',
options: {
implementation: require("sass"),
}
}
]
},
{
test: /\.mjs$/, // https://github.com/formatjs/formatjs/issues/1395#issuecomment-518823361
include: /node_modules/,
type: "javascript/auto"
}
]
},
resolve: {
modules: [ // This section denotes what folders you can use as a root in a require statement
path.resolve('./app'), // eg require('vendor.js') gets /app/vendor.js
path.resolve('./app/assets'), // eg require('images/favicon/favicon.ico') gets /app/assets/images/favicon/favicon.ico
path.resolve('./'), // Or you can use the full path /app/whatever
'node_modules' // Or maybe require('foo') for the Node module "foo".
],
extensions: [
'.web.coffee', '.web.js', '.coffee', '.js', '.pug', '.sass', '.vue',
`.${productSuffix}.coffee`, `.${productSuffix}.js`, `.${productSuffix}.pug`, `.${productSuffix}.sass`, `.${productSuffix}.vue`, //, `.${productSuffix}.scss` ?
],
alias: { // Replace Backbone's underscore with lodash
'underscore': 'lodash'
},
// https://github.com/facebook/create-react-app/issues/11756#issuecomment-1047253186
fallback: {
util: require.resolve('util/'), // because of 'console-browserify' package used by jshint, details: https://github.com/facebook/create-react-app/issues/11756
assert: require.resolve('assert/'), // because of 'console-browserify'
},
plugins: [new ProductResolverPlugin()]
},
externals: {
'esper.js': 'esper'
},
plugins: [
new webpack.ProgressPlugin({ profile: false }), // Always show build progress
new MiniCssExtractPlugin({ // Move CSS into external file
filename: 'stylesheets/[name].css',
chunkFilename: 'stylesheets/[name]-[contenthash].css',
ignoreOrder: true, // too many conflict warnings because of TestView, ignoring till those conflicts are fixed or that route is disabled
}),
new webpack.ProvidePlugin({ // So Bootstrap can use the global jQuery
$: 'jquery',
jQuery: 'jquery',
application: path.resolve(PWD, 'app/core/application')
}),
new webpack.IgnorePlugin({ resourceRegExp: /\/fonts\/bootstrap\/.*$/ }), // Ignore Bootstrap's fonts
new webpack.IgnorePlugin({ resourceRegExp: /^memwatch$/ }), // Just used by the headless client on the server side
new webpack.IgnorePlugin({ resourceRegExp: /.DS_Store$/ }),
// Enable IgnorePlugins for development to speed webpack
// new webpack.IgnorePlugin(/\!locale/),
// new webpack.IgnorePlugin(/\/admin\//),
// new webpack.IgnorePlugin(/\/artisan\//),
// new webpack.IgnorePlugin(/\/clans\//),
// new webpack.IgnorePlugin(/\/contribute\//),
// new webpack.IgnorePlugin(/\/courses\//),
// new webpack.IgnorePlugin(/\/editor\//),
// new webpack.IgnorePlugin(/\/ladder\//),
// new webpack.IgnorePlugin(/\/teachers\//),
// new webpack.IgnorePlugin(/\/play\//),
new CopyWebpackPlugin({
patterns: [
// NOTE: If you add a static asset, consider updating ViewLoadTimer to track its loading.
{ // Static assets
// Let's use file-loader down the line, but for now, just use URL references.
from: 'app/assets',
to: '.'
}, { // Ace
context: 'bower_components/ace-builds/src-min-noconflict',
from: '**/*',
to: 'javascripts/ace'
}, { // Esper
from: 'bower_components/esper.js/esper.js',
to: 'javascripts/esper.js'
}, {
from: 'bower_components/esper.js/esper-modern.js',
to: 'javascripts/esper.modern.js'
}, {
from: 'vendor/esper-plugin-lang-java-modern.js',
to: 'javascripts/app/vendor/aether-java.modern.js'
}, {
from: 'vendor/esper-plugin-lang-cpp-modern.js',
to: 'javascripts/app/vendor/aether-cpp.modern.js'
}
]
}),
new CompileStaticTemplatesPlugin({
locals: { shaTag: process.env.GIT_SHA || 'dev', chinaInfra: process.env.COCO_CHINA_INFRASTRUCTURE || false }
}),
new VueLoaderPlugin(),
new webpack.ProvidePlugin({
process: 'process/browser', // because of algoliasearch which needs access to process: https://github.com/algolia/docsearch/issues/980
Buffer: ['buffer', 'Buffer']
})
],
optimization: {},
stats: 'minimal'
}
}