From 3ebe24340dc480c0e2418d1f0e3be34c2bc048fb Mon Sep 17 00:00:00 2001 From: Stan Angeloff Date: Wed, 25 Apr 2012 15:54:27 +0300 Subject: [PATCH] Bump version number and fix package.json for naughty NPM. There is still an open bug at: https://github.com/isaacs/npm/issues/1978 This commit is a workaround, but doesn't fix the issue which still exists in NPM. --- bin/cli.js | 2 +- package.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/cli.js b/bin/cli.js index 3ad40c3..956aae8 100755 --- a/bin/cli.js +++ b/bin/cli.js @@ -87,7 +87,7 @@ if (defaults.help) { process.exit(0); } if (defaults.version) { - console.log('%s %s', defaults.$0, '0.1.2-1'); + console.log('%s %s', defaults.$0, '0.1.2-2'); process.exit(0); } diff --git a/package.json b/package.json index 186a2a1..4eac39b 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { "name": "lotte", - "version": "0.1.2-1", + "version": "0.1.2-2", "description": "Headless, automated browser testing using PhantomJS", "homepage": "https://github.com/StanAngeloff/lotte", "bugs": "https://github.com/StanAngeloff/lotte/issues", @@ -8,9 +8,9 @@ "email": "stanimir@angeloff.name", "url": "http://blog.angeloff.name" }, - "files": ["./bin", "./lib/", "./test/"], - "bin": "./bin/cli.js", - "main": "./lib/lotte.js", + "files": ["bin/", "lib/", "test/"], + "bin": "bin/cli.js", + "main": "lib/lotte.js", "repository": { "type": "git", "url": "https://github.com/StanAngeloff/lotte"