forked from openstf/stf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
114 lines (111 loc) · 3.76 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
109
110
111
112
113
114
var _ = require('lodash')
var webpack = require('webpack')
var CommonsChunkPlugin = require('webpack/lib/optimize/CommonsChunkPlugin')
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: {
root: [
pathutil.resource('app/components')
],
modulesDirectories: [
'web_modules',
'bower_components',
'node_modules'
],
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!css' },
{ test: /\.scss$/, loader: 'style!css!sass'},
{ test: /\.less$/, loader: 'style!css!less'},
{ test: /\.json$/, loader: 'json' },
{ test: /\.jpg$/, loader: 'url?limit=1000&mimetype=image/jpeg' },
{ test: /\.png$/, loader: 'url?limit=1000&mimetype=image/png' },
{ test: /\.gif$/, loader: 'url?limit=1000&mimetype=image/gif' },
{ test: /\.svg/, loader: 'url?limit=1&mimetype=image/svg+xml' },
{ test: /\.woff/, loader: 'url?limit=1&mimetype=application/font-woff'},
{ test: /\.otf/, loader: 'url?limit=1&mimetype=application/font-woff' },
{ test: /\.ttf/, loader: 'url?limit=1&mimetype=application/font-woff' },
{ test: /\.eot/, loader: 'url?limit=1&mimetype=vnd.ms-fontobject' },
{ test: /\.jade$/, loader: 'template-html-loader' },
{ test: /\.html$/, loader: 'html-loader' },
{ test: /angular\.js$/, loader: 'exports?angular'},
{ test: /angular-cookies\.js$/, loader: 'imports?angular=angular'},
{ test: /angular-route\.js$/, loader: 'imports?angular=angular'},
{ test: /angular-touch\.js$/, loader: 'imports?angular=angular'},
{ test: /angular-animate\.js$/, loader: 'imports?angular=angular'},
{ test: /angular-growl\.js$/, loader: 'imports?angular=angular'},
{ test: /uuid\.js$/, loader: 'imports?require=>undefined'},
{ test: /dialogs\.js$/, loader: 'script'}
],
preLoaders: [
{
test: /\.js$/,
exclude: /node_modules|bower_components/,
loader: 'jshint-loader'
}
],
noParse: [
//pathutil.resource('bower_components')
]
},
plugins: [
new webpack.ResolverPlugin(
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin(
'bower.json'
, ['main']
)
)
, new webpack.ResolverPlugin(
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin(
'.bower.json'
, ['main']
)
)
, new CommonsChunkPlugin('entry/commons.entry.js')
, new ProgressPlugin(_.throttle(
function(progress, message) {
log.info(
'Build progress %d%% (%s)'
, Math.floor(progress * 100)
, message ? message : (progress >= 1 ? 'complete' : 'unknown')
)
}
, 1000
))
]
},
webpackServer: {
debug: true,
devtool: 'eval',
stats: {
colors: true
}
}
}