From 514dd01bae3e8e8d4f8bc83fbb1ecd0400986af8 Mon Sep 17 00:00:00 2001 From: Patrick Stadler Date: Sat, 28 Mar 2015 09:34:04 +0100 Subject: [PATCH] update dependencies. bump version. --- lib/utils/index.js | 2 +- package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/utils/index.js b/lib/utils/index.js index 8861acb..33f88c6 100644 --- a/lib/utils/index.js +++ b/lib/utils/index.js @@ -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(); diff --git a/package.json b/package.json index e6f3714..1f6e657 100644 --- a/package.json +++ b/package.json @@ -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 ", "keywords": [ "deploy", @@ -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",