-
Notifications
You must be signed in to change notification settings - Fork 13
/
webpack.config.js
89 lines (79 loc) · 1.95 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
'use strict';
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var argv = require('minimist')(process.argv.slice(2));
var config = {
devtool: 'source-map',
entry: {
frontend: ['./frontend.js'],
cgtestjs: ['./cgtestjs.js']
},
output: {
path: path.join(__dirname, 'public/javascript'),
filename: '[name].bundle.js',
sourcePrefix: '',
publicPath: 'javascript/'
},
resolve: {
extensions: ['', '.js', '.json'],
root: __dirname,
modulesDirectories: ['node_modules'],
alias: {
jquery: "jquery/src/jquery"
}
},
plugins: [
new webpack.NoErrorsPlugin(),
new ExtractTextPlugin('[name].css')
],
module: {
loaders: [
{
test: '/.js$/',
loader: 'eslint-loader',
exclude: 'node_modules/'
},
{
test: /test samples\\.*\.json$/,
loader: 'file?name=../samples/[name].[ext]'
},
{
test: /\.json$/,
loader: 'json-loader',
exclude: /test samples\\.*\.json$/
},
{ test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
},
{
test: /samples\\.*\.yaml$/,
loader: 'file?name=../samples/[name].[ext]'
},
{
test: /\.worker.js$/,
loader: 'worker-loader',
exclude: 'node_modules/'
},
{
test: /simpleYamlWorker.js$/,
loader: 'file?name=../dist/[name].[ext]'
},
{
test: /\.png$/,
loader: "url-loader",
query: {mimetype: "image/png"}
},
{
test: /\.(ttf|eot|svg|woff|woff2|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader'
}
]
}
};
// if --production is passed, uglify the code
if (argv.production) {
console.info('This might take awhile ...');
config.plugins.unshift(new webpack.optimize.UglifyJsPlugin({mangle: true}));
}
module.exports = config;