Skip to content

Commit

Permalink
Minor things needed to actually build the demo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerpena committed Jul 26, 2016
1 parent 528fd7f commit 0556410
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"fs-extra-promise": "^0.4.0",
"isparta": "^4.0.0",
Expand Down
4 changes: 4 additions & 0 deletions webpack.config.demo.dev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* eslint no-var: 0 */
require('babel-register');
var config = require('./webpack/webpack.config.demo.dev.js');
module.exports = config;
4 changes: 4 additions & 0 deletions webpack.config.demo.prod.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* eslint no-var: 0 */
require('babel-register');
var config = require('./webpack/webpack.config.demo.prod.js');
module.exports = config;

0 comments on commit 0556410

Please sign in to comment.