commit 1b35b9d2b630eeb51c44b62d41b68df393a2a71f
parent 9f490661270886c025f18ff1cd2fb6c1941b0059
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Mon, 9 Feb 2015 01:31:52 +0300
Move webpack configuration file to its default location
Diffstat:
4 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gulpfile.js b/gulpfile.js
@@ -83,7 +83,7 @@ gulp.task('styles', function() {
// Bundle
gulp.task('bundle', function(cb) {
var started = false;
- var config = require('./config/webpack.js');
+ var config = require('./webpack.config.js');
var bundler = webpack(config);
function bundle(err, stats) {
diff --git a/package.json b/package.json
@@ -65,7 +65,7 @@
},
"jest": {
"rootDir": "src",
- "scriptPreprocessor": "../config/preprocessor.js",
+ "scriptPreprocessor": "../preprocessor.js",
"unmockedModulePathPatterns": [
"react"
]
diff --git a/config/preprocessor.js b/preprocessor.js
diff --git a/config/webpack.js b/webpack.config.js