var webpackMiddleware = require('webpack-dev-middleware') var webpack = require('webpack') var pathutil = require('../util/pathutil') var webpackConfig = webpackMiddleware(webpack({ cache: true, debug: true, devtool: 'eval', entry: pathutil.resource('app') + '/app.js', output: { path: '/static/build/', filename: 'bundle.js' }, resolve: { modulesDirectories: [ pathutil.resource('lib'), pathutil.resource('app') + '/components', 'web_modules', './../../node_modules' ], alias: { 'socket.io': 'socket.io-client/dist/socket.io', 'oboe': 'oboe/dist/oboe-browser' } }, module: { loaders: [ { test: /\.css$/, loader: 'style!css' }, { test: /\.jade/, loader: 'template-html-loader' }, { test: /angular\.js/, loader: 'exports?angular'}, { test: /angular-route\.js/, loader: 'imports?angular=angular'}, { test: /oboe-browser\.js/, loader: 'imports?define=>false!exports?oboe'} ], noParse: [ pathutil.resource('lib') ] }, plugins: [ new webpack.ResolverPlugin( new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin('bower.json', ['main']) ), new webpack.ResolverPlugin( new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin('.bower.json', ['main']) ) //new webpack.optimize.UglifyJsPlugin() ] }), { noInfo: false, quiet: false, lazy: false, publicPath: '/static/build/', stats: { colors: true } }) module.exports = webpackConfig