Skip to content
Browse files

add webpack configs and gulp webpack build tasks

  • Loading branch information...
1 parent 85cf79f commit 07fc22f86a4020be10b7727df9214dcbf5e328ad @BerkeleyTrue BerkeleyTrue committed
Showing with 10 additions and 10 deletions.
  1. +6 −6 gulpfile.js
  2. +1 −1 webpack.config.js
  3. +3 −3 webpack.config.node.js
View
12 gulpfile.js
@@ -1,4 +1,4 @@
-require('babel/register');
+require('babel-core/register');
var gulp = require('gulp'),
path = require('path'),
@@ -54,7 +54,7 @@ var paths = {
node: {
src: './client',
- dest: 'server/server'
+ dest: 'common/app'
},
syncWatch: [
@@ -100,15 +100,15 @@ gulp.task('loopback', function() {
});
gulp.task('pack-client', function() {
- return gulp.src(paths.client.src)
+ return gulp.src(webpackConfig.entry)
.pipe(webpack(webpackConfig))
- .pipe(gulp.dest(paths.client.dest));
+ .pipe(gulp.dest(webpackConfig.output.path));
});
gulp.task('pack-node', function() {
- return gulp.src(paths.node.src)
+ return gulp.src(webpackConfigNode.entry)
.pipe(webpack(webpackConfigNode))
- .pipe(gulp.dest(paths.node.dest));
+ .pipe(gulp.dest(webpackConfigNode.output.path));
});
gulp.task('pack', ['pack-client', 'pack-node']);
View
2 webpack.config.js
@@ -4,7 +4,7 @@ module.exports = {
devtool: 'sourcemap',
entry: './client',
output: {
- filename: 'fcc.js',
+ filename: 'bundle.js',
path: path.join(__dirname, '/public/js'),
publicPath: 'public/'
},
View
6 webpack.config.node.js
@@ -14,12 +14,12 @@ var nodeModules = fs.readdirSync('node_modules')
module.exports = {
devtool: 'sourcemap',
target: 'node',
- entry: './server/appEntry',
+ entry: './common/app',
// keeps webpack from bundling modules
externals: nodeModules,
output: {
- filename: 'fcc.js',
- path: path.join(__dirname, '/public/js'),
+ filename: 'app-stream.bundle.js',
+ path: path.join(__dirname, '/server'),
publicPath: 'public/'
},
module: {

0 comments on commit 07fc22f

Please sign in to comment.
Something went wrong with that request. Please try again.