Skip to content

Commit 0556410

Browse files
committed
Minor things needed to actually build the demo
1 parent 528fd7f commit 0556410

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"cross-env": "^2.0.0",
5353
"css-loader": "^0.23.1",
5454
"express": "^4.14.0",
55+
"extract-text-webpack-plugin": "^1.0.1",
5556
"file-loader": "^0.9.0",
5657
"fs-extra-promise": "^0.4.0",
5758
"isparta": "^4.0.0",

webpack.config.demo.dev.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* eslint no-var: 0 */
2+
require('babel-register');
3+
var config = require('./webpack/webpack.config.demo.dev.js');
4+
module.exports = config;

webpack.config.demo.prod.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* eslint no-var: 0 */
2+
require('babel-register');
3+
var config = require('./webpack/webpack.config.demo.prod.js');
4+
module.exports = config;

0 commit comments

Comments
 (0)