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
|
var path = require('path')
var webpack = require('webpack')
var CopyWebpackPlugin = require('copy-webpack-plugin');
var config = {
context: path.join(__dirname, 'app'),
entry: ['babel-polyfill', './main.js'],
output: {
path: path.join(__dirname, 'pydist', 'leap', 'bitmask_js', 'public'),
filename: 'app.bundle.js'
},
resolve: {
modulesDirectories: ['node_modules', './app'],
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [
// babel transform
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['react', 'es2015']
}
},
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.less$/,
loader: "style!css!less?noIeCompat"
},
{
test: /\.png$/,
loader: "file-loader"
},
{
test: /\.jpg$/,
loader: "file-loader"
},
{
test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader'
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader'
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader'
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader'
}
]
},
plugins: [
// don't bundle when there is an error:
new webpack.NoErrorsPlugin(),
// https://webpack.github.io/docs/code-splitting.html
// new webpack.optimize.CommonChunkPlugin('common.js')
//
// ASSETS
//
// If you make changes to the asset files, you will need to stop then rerun
// `npm run watch` for the changes to take effect.
//
// For more information: https://github.com/kevlened/copy-webpack-plugin
//
new CopyWebpackPlugin([
{ from: 'img/*'},
{ from: 'index.html' },
{ from: '../node_modules/zxcvbn/dist/zxcvbn.js', to: 'js' }
])
],
stats: {
colors: true
},
// source-map can be used in production or development
// but it creates a separate file.
devtool: 'source-map'
}
/*
if (process.env.NODE_ENV == 'production') {
// see https://github.com/webpack/docs/wiki/optimization
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
output: { comments: false }
}),
new webpack.optimize.DedupePlugin()
)
} else {
config.devtool = 'inline-source-map';
}
*/
module.exports = config
|