forked from swagger-api/swagger-editor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
92 lines (80 loc) · 1.97 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
'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 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 webpack.NoErrorsPlugin(),
new ExtractTextPlugin('styles.css')
],
module: {
loaders: [
{
test: '/.js$/',
loader: 'eslint-loader',
exclude: 'node_modules/'
},
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.worker.js$/,
loader: 'worker-loader',
exclude: 'node_modules/'
},
{
test: /simpleYamlWorker.js$/,
loader: 'file?name=[name].[ext]'
},
{
test: /\.png$/,
loader: "url-loader",
query: {mimetype: "image/png"}
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract(
// activate source maps via loader query
'css?sourceMap!' +
'less?sourceMap'
)
},
{
test: /images\/*\.svg$/,
loader: 'svg-inline'
},
{
test: /\.(ttf|eot|svg|woff|woff2|otf)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader'
},
{
test: /\.html$/,
loader: 'html-loader'
}
]
}
};
// if --production is passed, ng-annotate and uglify the code
if (argv.production) {
console.info('This might take awhile ...');
config.plugins.unshift(new webpack.optimize.UglifyJsPlugin({mangle: true}));
config.plugins.unshift(new NgAnnotatePlugin({add: true}));
}
module.exports = config;