forked from openstf/stf
-
Notifications
You must be signed in to change notification settings - Fork 487
/
webpack.config.js
108 lines (106 loc) · 4.05 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
101
102
103
104
105
106
107
108
//
// Copyright © 2022 contains code contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
//
var _ = require('lodash')
var webpack = require('webpack')
var ProgressPlugin = require('webpack/lib/ProgressPlugin')
var pathutil = require('./lib/util/pathutil')
var log = require('./lib/util/logger').createLogger('webpack:config')
module.exports = {
webpack: {
context: __dirname
, cache: true
, entry: {
app: pathutil.resource('app/app.js')
, authldap: pathutil.resource('auth/ldap/scripts/entry.js')
, authmock: pathutil.resource('auth/mock/scripts/entry.js')
}
, output: {
path: pathutil.resource('build')
, publicPath: '/static/app/build/'
, filename: 'entry/[name].entry.js'
, chunkFilename: '[id].[hash].chunk.js'
}
, stats: {
colors: true
}
, resolve: {
modules: [
pathutil.resource('app/components')
, 'web_modules'
, 'bower_components'
, 'node_modules'
]
, descriptionFiles: ['package.json', 'bower.json']
, moduleExtensions: ['-loader']
, extensions: ['.js', '.json']
, enforceModuleExtension: false
, alias: {
'angular-bootstrap': 'angular-bootstrap/ui-bootstrap-tpls'
, localforage: 'localforage/dist/localforage.js'
, 'socket.io': 'socket.io-client'
, stats: 'stats.js/src/Stats.js'
, 'underscore.string': 'underscore.string/index'
}
}
, module: {
loaders: [
{test: /\.css$/, loader: 'style-loader!css-loader'}
, {test: /\.scss$/, loader: 'style-loader!css-loader!sass-loader'}
, {test: /\.less$/, loader: 'style-loader!css-loader!less-loader'}
, {test: /\.json$/, loader: 'json-loader'}
, {test: /\.jpg$/, loader: 'url-loader?limit=1000&mimetype=image/jpeg'}
, {test: /\.png$/, loader: 'url-loader?limit=1000&mimetype=image/png'}
, {test: /\.gif$/, loader: 'url-loader?limit=1000&mimetype=image/gif'}
, {test: /\.svg/, loader: 'url-loader?limit=1&mimetype=image/svg+xml'}
, {test: /\.woff/, loader: 'url-loader?limit=1&mimetype=application/font-woff'}
, {test: /\.otf/, loader: 'url-loader?limit=1&mimetype=application/font-woff'}
, {test: /\.ttf/, loader: 'url-loader?limit=1&mimetype=application/font-woff'}
, {test: /\.eot/, loader: 'url-loader?limit=1&mimetype=vnd.ms-fontobject'}
, {test: /\.pug$/, loader: 'template-html-loader?engine=jade'}
, {test: /\.html$/, loader: 'html-loader'}
, {test: /angular\.js$/, loader: 'exports-loader?angular'}
, {test: /angular-cookies\.js$/, loader: 'imports-loader?angular=angular'}
, {test: /angular-route\.js$/, loader: 'imports-loader?angular=angular'}
, {test: /angular-touch\.js$/, loader: 'imports-loader?angular=angular'}
, {test: /angular-animate\.js$/, loader: 'imports-loader?angular=angular'}
, {test: /angular-growl\.js$/, loader: 'imports-loader?angular=angular'}
, {test: /dialogs\.js$/, loader: 'script-loader'}
]
}
, plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'commons.entry'
, filename: 'entry/commons.entry.js'
})
, new ProgressPlugin(_.throttle(
function(progress, message) {
var msg
if (message) {
msg = message
}
else {
msg = progress >= 1 ? 'complete' : 'unknown'
}
log.info('Build progress %d%% (%s)', Math.floor(progress * 100), msg)
}
, 1000
))
]
}
, webpackServer: {
plugins: [
new webpack.LoaderOptionsPlugin({
debug: true
})
, new webpack.optimize.CommonsChunkPlugin({
name: 'commons.entry'
, filename: 'entry/commons.entry.js'
})
]
, devtool: 'eval'
, stats: {
colors: true
}
}
}