Updated Branches: refs/heads/plugman-registry c9a42d689 -> 5a22d2a43
npm version 0.8.0. Tests are generally fixed up. Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/99c731c1 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/99c731c1 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/99c731c1 Branch: refs/heads/plugman-registry Commit: 99c731c1fdc9f5c39404ac48088b8156eb05869d Parents: cf8887e Author: Fil Maj <[email protected]> Authored: Wed Jun 26 17:33:58 2013 -0700 Committer: Fil Maj <[email protected]> Committed: Wed Jun 26 17:34:21 2013 -0700 ---------------------------------------------------------------------- package.json | 9 +++++++-- spec/util/action-stack.spec.js | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/99c731c1/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index 937da53..bc7cc7e 100644 --- a/package.json +++ b/package.json @@ -2,15 +2,20 @@ "author": "Andrew Lunny <[email protected]>", "name": "plugman", "description": "install/uninstall Cordova plugins", - "version": "0.7.15", + "version": "0.8.0", "repository": { "type": "git", "url": "git://git-wip-us.apache.org/repos/asf/cordova-plugman.git" }, + "bugs": { + "url" : "https://issues.apache.org/jira/browse/CB", + "email" : "[email protected]" + }, "main": "plugman.js", "engines": { "node": ">=0.9.9" }, + "engineStrict":true, "dependencies": { "nopt": "1.0.x", "glob": "3.2.x", @@ -23,7 +28,7 @@ "ncallbacks":"1.1.0", "underscore":"1.4.4", "dep-graph":"1.1.0", - "semver": "1.x.x" + "semver": "2.0.x" }, "devDependencies": { "jasmine-node": "1.7.0" http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/99c731c1/spec/util/action-stack.spec.js ---------------------------------------------------------------------- diff --git a/spec/util/action-stack.spec.js b/spec/util/action-stack.spec.js index b258a32..f366407 100644 --- a/spec/util/action-stack.spec.js +++ b/spec/util/action-stack.spec.js @@ -23,6 +23,7 @@ describe('action-stack', function() { expect(third_spy).toHaveBeenCalledWith(third_args[0]); }); it('should revert processed actions if an exception occurs', function() { + spyOn(console, 'log'); var first_spy = jasmine.createSpy(); var first_args = [1]; var first_reverter = jasmine.createSpy();
