-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
69 lines (55 loc) · 1.53 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
var webpack = require('webpack');
var commonsPlugin = new webpack.optimize.CommonsChunkPlugin('common.js');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
// webpack options
entry: {
// the main angular module
'background': './src/background/run.js',
'inject': './src/inject/inject.js',
'dashboard': './src/dashboard/run.js',
},
resolve: {
alias: {
// localforage: 'localforage!imports?require=>false',
},
},
node: {
fs: 'empty',
net: 'empty',
},
output: {
path: "./build",
// TODO(jared): think about using hashes to make caching a thing
filename: "[name].js",
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader?optional=runtime&experimental=true' },
{ test: /\.json$/, loader: 'json' },
// { test: /^localforage$/, loader: 'imports?require=>false
{
test: require.resolve("localforage"),
loader: "imports?require=>false",
},
{
test: /[\/](localforage|indexeddb|localstorage|websql)\.js$/,
loaders: ['imports?this=>window']
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader!less-loader")
}
],
},
plugins: [commonsPlugin],
devtool: 'inline-source-map',
colors: true,
plugins: [
new ExtractTextPlugin("[name].css")
],
}