-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
93 lines (87 loc) · 2.68 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
const webpack = require('webpack');
const path = require('path');
const merge = require('webpack-merge');
const validate = require('webpack-validator');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const autoprefixer = require('autoprefixer');
const PATHS = {
app: './softpage',
example: './example/example',
build: './dist'
};
const common = {
output: {
path: path.resolve(PATHS.build),
libraryTarget: 'umd',
library: 'SoftPage'
},
module: {
loaders: [{
test: /\.js?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015'],
plugins: ['add-module-exports']
}
}, {
test: /\.less?$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!postcss-loader!less-loader')
}, {
test: /\.css?$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!postcss-loader')
},
{test: /\.(gif|png)$/, loader: 'url-loader?limit=100000' },
{test: /\.(woff|woff2)(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?limit=10000&mimetype=application/font-woff'},
{test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?limit=10000&mimetype=application/octet-stream'},
{test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: 'file'},
{test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?limit=10000&mimetype=image/svg+xml'}
],
},
resolve: {
root: [
__dirname
]
},
postcss: [ autoprefixer({ browsers: ['last 2 versions'] }) ],
plugins: [
new ExtractTextPlugin('[name].css'),
new ProgressBarPlugin(),
new CleanWebpackPlugin(['dist'], {
root: __dirname,
verbose: true,
dry: false
})
]
};
var config;
// Detect how npm is run and branch based on that
switch(process.env.npm_lifecycle_event) {
case 'build':
config = merge(common, {
entry: {
softpage: PATHS.app,
},
output: {
filename: '[name].js'
},
externals: [
'tingle.js',
'superagent'
]
});
break;
default:
config = merge(common, {
entry: {
example: PATHS.example,
},
output: {
filename: '[name].js',
library: 'SoftPage'
}
});
}
module.exports = validate(config);