1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00

Reformat webpack.config.js, indents were all over the board.

This commit is contained in:
Simo Kinnunen 2014-02-21 14:53:02 +09:00
parent aa28801e87
commit 84207e1f36

View file

@ -1,17 +1,17 @@
module.exports = {
cache: true,
debug: true,
devtool: 'inline-source-map',
entry: './res/app/scripts/entry.js',
output: {
path: './res/app/build/',
filename: 'bundle.js'
},
resolve: {
cache: true
, debug: true
, devtool: 'inline-source-map'
, entry: './res/app/scripts/entry.js'
, output: {
path: './res/app/build/'
, filename: 'bundle.js'
}
, resolve: {
modulesDirectories: ['./res/lib', 'node_modules']
},
loaders: [
{ test: /\.css$/, loader: 'style!css' },
{ test: /\.coffee$/, loader: 'coffee' }
}
, loaders: [
{ test: /\.css$/, loader: 'style!css' }
, { test: /\.coffee$/, loader: 'coffee' }
]
}
}