Skip to content

Commit

Permalink
Merge pull request #29 from jakemmarsh/bump-dependencies
Browse files Browse the repository at this point in the history
Bump dependencies, upgrade to babel 6
  • Loading branch information
jakemmarsh committed Dec 9, 2015
2 parents 8592d2d + 2e693e0 commit e23377d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["es2015", "react"],
"plugins": ["transform-object-rest-spread"]
}
4 changes: 2 additions & 2 deletions gulp/tasks/clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import gulp from 'gulp';
import del from 'del';
import config from '../config';

gulp.task('clean', function(cb) {
gulp.task('clean', function() {

del([config.buildDir], cb);
return del([config.buildDir]);

});
File renamed without changes.
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-rocket-boilerplate",
"version": "2.3.0",
"version": "2.4.0",
"author": "Jake Marsh <[email protected]>",
"description": "Boilerplate using React, Browserify, SASS, and Gulp.",
"repository": {
Expand All @@ -20,20 +20,23 @@
"npm": "^2.1.x"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-core": "^6.3.15",
"babel-eslint": "^5.0.0-beta4",
"babelify": "^6.1.x",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browser-sync": "^2.7.13",
"browserify": "^10.2.6",
"browserify": "^12.0.1",
"debowerify": "^1.3.1",
"del": "^1.2.0",
"eslint-plugin-react": "^3.11.3",
"del": "^2.2.0",
"eslint-plugin-react": "^3.6.3",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-eslint": "^1.1.1",
"gulp-if": "^1.2.5",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.3.0",
"gulp-jsx-coverage": "^0.2.6",
"gulp-jsx-coverage": "^0.3.5",
"gulp-mocha": "^2.1.3",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
Expand All @@ -43,19 +46,19 @@
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"history": "1.13.0",
"humps": "^0.6.0",
"humps": "^1.0.0",
"istanbul": "^0.4.0",
"jsdom": "^3.1.2",
"jsdom": "3.1.2",
"lodash": "^3.10.0",
"mocha": "^2.3.3",
"react": "^0.14.x",
"react-addons-test-utils": "^0.14.0",
"react-document-title": "^1.0.2",
"react-document-title": "^2.0.1",
"react-dom": "^0.14.0",
"react-router": "^1.0.0-rc1",
"reflux": "^0.2.9",
"reflux": "^0.3.0",
"run-sequence": "^1.1.1",
"should": "^7.1.0",
"should": "^8.0.0",
"sinon": "^1.17.1",
"superagent": "^1.2.0",
"vinyl-source-stream": "^1.1.0",
Expand Down

0 comments on commit e23377d

Please sign in to comment.