Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
use babel-plugin-transform-object-assign
Browse files Browse the repository at this point in the history
The babel-plugin-object-assign module moved into babel core plugins
  • Loading branch information
clarkbw committed Dec 15, 2015
1 parent a8525d1 commit e74d91d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gulp.task('babel', function() {
return gulp.src(paths.es6)
.pipe(sourcemaps.init())
.pipe(babel({
plugins: ['object-assign']
plugins: ['transform-object-assign']
}))
.pipe(sourcemaps.write('.', { sourceRoot: paths.sourceRoot }))
.pipe(gulp.dest(paths.es5));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"babel-core": "latest",
"babel-plugin-object-assign": "latest",
"babel-plugin-transform-object-assign": "latest",
"coveralls": "latest",
"gulp": "latest",
"gulp-babel": "latest",
Expand Down

0 comments on commit e74d91d

Please sign in to comment.