Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #15 from mjeanroy/refactor-remove-deprecated-gulp-…
Browse files Browse the repository at this point in the history
…util

core: remove deprecated gulp-util and use original library
  • Loading branch information
ikari-pl authored Dec 25, 2017
2 parents 7602a05 + fa7df1f commit ead4f73
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var map = require('map-stream'),
gutil = require('gulp-util'),
log = require('fancy-log'),
colors = require('ansi-colors'),
git = require('gulp-git')

/**
Expand Down Expand Up @@ -28,7 +29,7 @@ module.exports = function(opts) {
}
var tag = opts.prefix+version
var label = opts.label.replace('%t', tag)
gutil.log('Tagging as: '+gutil.colors.cyan(tag))
log('Tagging as: '+colors.cyan(tag))
git.tag(tag, label, opts, cb)
}

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"author": "Cezar \"ikari\" Pokorski <[email protected]>",
"license": "BSD-2-Clause",
"dependencies": {
"map-stream": "~0.1.0",
"gulp-util": "~2.2.14",
"gulp-git": "~0.3.6"
"ansi-colors": "~1.0.1",
"fancy-log": "~1.3.2",
"gulp-git": "^2.4.2",
"map-stream": "~0.1.0"
},
"devDependencies": {
"gulp": "~3.6.0",
"gulp-bump": "~0.1.7",
"gulp-filter": "~0.4.0",
"gulp-prompt": "~0.1.1",
"gulp": "~3.6.0",
"gulp-git": "~0.3.6"
"gulp-prompt": "~0.1.1"
}
}

0 comments on commit ead4f73

Please sign in to comment.