Skip to content

Commit

Permalink
feature(publish) util -> rendy
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 12, 2014
1 parent cd32adb commit f8aa158
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

versionio = require('version-io'),
changelog = require('changelog-io'),
Util = require('util-io'),
rendy = require('rendy'),
spawnify = require('spawnify'),
async = require('async'),
minor = require('minor'),
Expand Down Expand Up @@ -34,7 +34,7 @@
if (!info)
emitter.emit('error', Error('package.json not found'));
else if (!version)
emitter.emit('data', Util.render(MSG, {
emitter.emit('data', rendy(MSG, {
name : info.name,
version : info.version
}));
Expand All @@ -54,7 +54,7 @@
else if (/major|minor|patch/.test(version))
version = minor(version, info.version);

cmd = Util.render(Cmd, {
cmd = rendy(Cmd, {
version: version
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"minor": "~1.2.0",
"prepend": "~1.0.1",
"readjson": "~1.0.0",
"rendy": "~1.0.0",
"spawnify": "~1.6.0",
"util-io": "~1.6.0",
"version-io": "~1.0.0"
},
"license": "MIT"
Expand Down

0 comments on commit f8aa158

Please sign in to comment.