Skip to content

Commit

Permalink
latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbagwell committed Jul 13, 2016
1 parent 7e7c63c commit 8e8183f
Show file tree
Hide file tree
Showing 10 changed files with 106 additions and 3,462 deletions.
6 changes: 5 additions & 1 deletion .babelrc
@@ -1,4 +1,8 @@
{
"presets": ["babel-preset-es2015-without-strict"],
"plugins": ["transform-object-rest-spread"]
"plugins": [
"transform-object-rest-spread",
"transform-react-jsx",
"babel-plugin-transform-es2015-destructuring"
]
}
3 changes: 2 additions & 1 deletion .gitignore
@@ -1 +1,2 @@
node_modules
node_modules
credentials.json
25 changes: 25 additions & 0 deletions gulpfile.babel.js
Expand Up @@ -35,4 +35,29 @@ gulp.task('watchClient', () => {

});

gulp.task('buildServer', () => {

let conf = webpackConfig(true);

webpack(conf, (err, stats) => {

showStats(err, stats);

});

});

gulp.task('buildClient', () => {

let conf = webpackConfig();

webpack(conf, (err, stats) => {

showStats(err, stats);

});

});

gulp.task('watch', ['watchClient', 'watchServer']);
gulp.task('build', ['buildClient', 'buildServer']);

0 comments on commit 8e8183f

Please sign in to comment.