Test support for modeller 3d

This commit is contained in:
Val Erastov 2017-02-01 16:46:22 -08:00
parent 2e27a2e853
commit 7865aea044
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
const config = require('./webpack.config.js');
config.entry.test_runner = ['./web/test/runner'];
config.entry.test_runner = ['babel-polyfill', './web/test/runner'];
module.exports = config;

View file

@ -5,7 +5,7 @@ module.exports = {
devtool: 'source-map',
entry: {
index: ['babel-polyfill', './web/app/index'],
sketcher: ['./web/app/sketcher']
sketcher: ['babel-polyfill', './web/app/sketcher']
},
output: {
path: path.join(__dirname, 'dist/static'),