forked from swagger-api/swagger-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
100 lines (88 loc) · 2.06 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
98
99
100
'use strict';
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var NgAnnotatePlugin = require('ng-annotate-webpack-plugin');
var argv = require('minimist')(process.argv.slice(2));
var FONT_REGEX = /\.(ttf|eot|svg|woff|woff2|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/;
var config = {
devtool: 'source-map',
entry: {
app: ['./index.js']
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: 'dist/'
},
resolve: {
extensions: ['', '.js', '.json'],
root: __dirname,
modulesDirectories: ['node_modules']
},
plugins: [
new ExtractTextPlugin('styles.css')
],
eslint: {
configFile: './.eslintrc.js'
},
module: {
loaders: [
{
test: /\.json$/,
loader: 'json'
},
{
test: /\.worker.js$/,
loader: 'worker'
},
{
test: /\.png$/,
loader: "url",
query: {mimetype: "image/png"}
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract(
'css?sourceMap' +
// minimize CSS in producion
(argv.production ? '&minimize' : '') +
'!less?sourceMap'
)
},
{
test: /images\/*\.svg$/,
loader: 'svg-inline'
},
{
test: FONT_REGEX,
loader: 'url',
query: {
// limit: 1000 // 10kb
}
},
// {
// test: FONT_REGEX,
// loader: 'file'
// },
{
test: /\.html$/,
loader: 'html'
}
],
preLoaders: [
{
test: /\.js$/,
loader: 'eslint'
}
]
}
};
// if --production is passed, ng-annotate and uglify the code
if (argv.production) {
console.info('This might take a while...');
config.plugins.unshift(new webpack.optimize.UglifyJsPlugin({mangle: true}));
config.plugins.unshift(new NgAnnotatePlugin({add: true}));
config.plugins.unshift(new webpack.NoErrorsPlugin());
}
module.exports = config;