1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +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 = { module.exports = {
cache: true, cache: true
debug: true, , debug: true
devtool: 'inline-source-map', , devtool: 'inline-source-map'
entry: './res/app/scripts/entry.js', , entry: './res/app/scripts/entry.js'
output: { , output: {
path: './res/app/build/', path: './res/app/build/'
filename: 'bundle.js' , filename: 'bundle.js'
}, }
resolve: { , resolve: {
modulesDirectories: ['./res/lib', 'node_modules'] modulesDirectories: ['./res/lib', 'node_modules']
}, }
loaders: [ , loaders: [
{ test: /\.css$/, loader: 'style!css' }, { test: /\.css$/, loader: 'style!css' }
{ test: /\.coffee$/, loader: 'coffee' } , { test: /\.coffee$/, loader: 'coffee' }
] ]
} }