-
Notifications
You must be signed in to change notification settings - Fork 655
/
webpack.config.js
97 lines (92 loc) · 2.17 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
/* vim: set softtabstop=2 shiftwidth=2 expandtab : */
var webpack = require('webpack');
var path = require('path')
var _ = require('lodash')
var baseConfig = {
entry: './src/main.js',
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue'
},
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
},
{
// edit this for additional asset file types
test: /\.(png|jpg|gif)$/,
loader: 'file?name=[name].[ext]?[hash]'
}
],
},
// example: if you wish to apply custom babel options
// instead of using vue-loader's default:
babel: {
presets: ['es2015', 'stage-0'],
plugins: ['transform-runtime']
}
}; /* baseConfig */
/**
* Web config uses a global Vue and Lodash object.
* */
var webConfig = _.clone(baseConfig);
webConfig.resolve = {
alias: {
'vue': path.resolve('./src/stubs/vue'),
'lodash': path.resolve('./src/stubs/lodash'),
},
};
webConfig.output = {
path: './dist',
filename: "vue-google-maps.js",
library: ["VueGoogleMap"],
libraryTarget: "umd"
};
/**
* npm config allows vue-google-maps to be distributed
* as an npm package without double-requiring vue
* */
var npmConfig = _.clone(baseConfig);
npmConfig.resolve = {
alias: {
'vue': path.resolve('./src/stubs-dist/vue'),
'lodash': path.resolve('./src/stubs-dist/lodash'),
'q': path.resolve('./src/stubs-dist/q'),
},
};
npmConfig.module.noParse = [
/src\/stubs-dist/
];
npmConfig.output = {
path: './',
filename: "index.js",
library: ["VueGoogleMap"],
libraryTarget: "umd"
};
module.exports = [
webConfig,
npmConfig,
];
if (process.env.NODE_ENV === 'production') {
console.log('THIS IS PROD');
for (var i=0; i<module.exports.length; i++) {
module.exports[i].plugins = [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.optimize.OccurenceOrderPlugin()
]
}
} else {
module.exports.devtool = '#source-map'
}