Skip to content
This repository has been archived by the owner on Mar 26, 2020. It is now read-only.

Commit

Permalink
Bump version number and fix package.json for naughty NPM.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
StanAngeloff committed Apr 25, 2012
1 parent 0932d75 commit 3ebe243
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/cli.js
Expand Up @@ -87,7 +87,7 @@ if (defaults.help) {
process.exit(0); process.exit(0);
} }
if (defaults.version) { 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); process.exit(0);
} }


Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,5 +1,5 @@
{ "name": "lotte", { "name": "lotte",
"version": "0.1.2-1", "version": "0.1.2-2",
"description": "Headless, automated browser testing using PhantomJS", "description": "Headless, automated browser testing using PhantomJS",
"homepage": "https://github.com/StanAngeloff/lotte", "homepage": "https://github.com/StanAngeloff/lotte",
"bugs": "https://github.com/StanAngeloff/lotte/issues", "bugs": "https://github.com/StanAngeloff/lotte/issues",
Expand All @@ -8,9 +8,9 @@
"email": "stanimir@angeloff.name", "email": "stanimir@angeloff.name",
"url": "http://blog.angeloff.name" "url": "http://blog.angeloff.name"
}, },
"files": ["./bin", "./lib/", "./test/"], "files": ["bin/", "lib/", "test/"],
"bin": "./bin/cli.js", "bin": "bin/cli.js",
"main": "./lib/lotte.js", "main": "lib/lotte.js",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/StanAngeloff/lotte" "url": "https://github.com/StanAngeloff/lotte"
Expand Down

0 comments on commit 3ebe243

Please sign in to comment.