You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
var alias = require('./alias')
|
|
|
|
var webpack = require('webpack')
|
|
|
|
|
|
|
|
var webpackConfig = {
|
|
|
|
resolve: {
|
|
|
|
alias: Object.assign({}, alias, {
|
|
|
|
entities: './entity-decoder'
|
|
|
|
})
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
loaders: [
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: 'babel',
|
|
|
|
exclude: /node_modules/
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: '"development"',
|
|
|
|
TRANSITION_DURATION: process.env.SAUCE ? 200 : 50
|
|
|
|
}
|
|
|
|
})
|
|
|
|
],
|
|
|
|
devtool: '#inline-source-map'
|
|
|
|
}
|
|
|
|
|
|
|
|
// shared config for all unit tests
|
|
|
|
module.exports = {
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
files: [
|
|
|
|
'../test/unit/index.js'
|
|
|
|
],
|
|
|
|
preprocessors: {
|
|
|
|
'../test/unit/index.js': ['webpack', 'sourcemap']
|
|
|
|
},
|
|
|
|
webpack: webpackConfig,
|
|
|
|
webpackMiddleware: {
|
|
|
|
noInfo: true
|
|
|
|
}
|
|
|
|
}
|