Skip to content

Commit

Permalink
update dependencies. bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Mar 28, 2015
1 parent 44934ef commit 514dd01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function tempFilePath(filepath) {
return path.join(filepath || tmpdir, crypto.randomBytes(16).toString('hex'));
}

module.exports.writeTempFile = function (str) {
exports.writeTempFile = function(str) {
var isWin = /^win/i.test(os.platform());
var fullpath = isWin ? tempFilePath('.') : tempFilePath();

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flightplan",
"description": "Library for streamlining application deployment or systems administration tasks",
"version": "0.6.1",
"version": "0.6.2",
"author": "Patrick Stadler <[email protected]>",
"keywords": [
"deploy",
Expand Down Expand Up @@ -37,9 +37,9 @@
},
"dependencies": {
"byline": "^4.1.1",
"chalk": "^0.5.1",
"chalk": "^1.0.0",
"fibers": "^1.0.5",
"interpret": "^0.4.2",
"interpret": "^0.5.2",
"liftoff": "^2.0.0",
"nopt": "^3.0.1",
"pretty-hrtime": "^1.0.0",
Expand Down

0 comments on commit 514dd01

Please sign in to comment.