Skip to content

Commit

Permalink
core: remove deprecated gulp-util dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Dec 25, 2017
1 parent 31842ee commit 1226ac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
*/

const path = require('path');
const log = require('fancy-log');
const gulp = require('gulp');
const jasmine = require('gulp-jasmine');
const babel = require('gulp-babel');
const del = require('del');
const eslint = require('gulp-eslint');
const gutil = require('gulp-util');
const conventionalChangelog = require('gulp-conventional-changelog');
const git = require('gulp-git');
const bump = require('gulp-bump');
Expand Down Expand Up @@ -102,8 +102,8 @@ gulp.task('tag', (done) => {
['major', 'minor', 'patch'].forEach((level) => {
gulp.task(`bump:${level}`, () => {
return gulp.src(path.join(ROOT, 'package.json'))
.pipe(bump({type: level})
.on('error', gutil.log))
.pipe(bump({type: level}))
.on('error', (e) => log.error(e))
.pipe(gulp.dest(ROOT));
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@
"del": "3.0.0",
"eslint": "4.14.0",
"eslint-config-google": "0.9.1",
"fancy-log": "1.3.2",
"gulp": "3.9.1",
"gulp-babel": "7.0.0",
"gulp-bump": "2.9.0",
"gulp-conventional-changelog": "1.1.7",
"gulp-eslint": "4.0.0",
"gulp-git": "2.4.2",
"gulp-jasmine": "2.4.2",
"gulp-util": "3.0.8",
"jasmine-core": "2.8.0",
"rollup": "0.53.0",
"rollup-plugin-commonjs": "8.2.6",
Expand Down

0 comments on commit 1226ac5

Please sign in to comment.