Skip to content

Commit

Permalink
dependencies updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Granze committed Feb 18, 2015
1 parent bd03df4 commit 1084e11
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ __Styles__
- [gulp-autoprefixer](https://www.npmjs.org/package/gulp-autoprefixer)

__JSX tranform/ES6 support__
- [6to5](https://github.com/6to5/6to5)
- [Babel (formerly 6to5)](https://github.com/babel/babel)

__Minification__
- [Gulp-uglify](https://github.com/terinjokes/gulp-uglify/)
Expand Down
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var gulp = require('gulp'),
watchify = require('watchify'),
source = require('vinyl-source-stream'),
buffer = require('vinyl-buffer'),
to5ify = require('6to5ify'),
babelify = require('babelify'),
uglify = require('gulp-uglify'),
del = require('del'),
notify = require('gulp-notify'),
Expand Down Expand Up @@ -47,14 +47,14 @@ gulp.task('watchify', function() {
.pipe(reload({stream: true}));
}

bundler.transform(to5ify)
bundler.transform(babelify)
.on('update', rebundle);
return rebundle();
});

gulp.task('browserify', function() {
browserify(p.jsx)
.transform(to5ify)
.transform(babelify)
.bundle()
.pipe(source(p.bundle))
.pipe(buffer())
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@
"homepage": "https://github.com/Granze/react-starterify",
"dependencies": {},
"devDependencies": {
"6to5ify": "^3.1.2",
"browser-sync": "^1.9.0",
"browserify": "^8.1.0",
"del": "^1.1.0",
"gulp": "^3.8.9",
"babelify": "^5.0.3",
"browser-sync": "^2.1.6",
"browserify": "^8.1.3",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-autoprefixer": "2.1.0",
"gulp-changed": "^1.0.0",
"gulp-csso": "^0.2.9",
"gulp-notify": "^2.1.0",
"gulp-sass": "^1.3.1",
"gulp-uglify": "^1.0.1",
"react": "^0.12.0",
"superagent": "^0.20.0",
"gulp-changed": "^1.1.1",
"gulp-csso": "^1.0.0",
"gulp-notify": "^2.2.0",
"gulp-sass": "^1.3.3",
"gulp-uglify": "^1.1.0",
"react": "^0.12.2",
"superagent": "^0.21.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.2.0"
"watchify": "^2.3.0"
}
}

0 comments on commit 1084e11

Please sign in to comment.