From 84207e1f36e6ad7c4755f06a1aa0f55d23148f18 Mon Sep 17 00:00:00 2001 From: Simo Kinnunen Date: Fri, 21 Feb 2014 14:53:02 +0900 Subject: [PATCH] Reformat webpack.config.js, indents were all over the board. --- webpack.config.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 077533ce..1bb8a429 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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' } ] -} \ No newline at end of file +}