forked from googleapis/release-please
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(node): do not update versions of packages installed using a protocol
fixes googleapis#2173
- Loading branch information
Showing
4 changed files
with
133 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
test/updaters/fixtures/package-with-protocol-dependencies.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "yargs-parser", | ||
"version": "13.0.0", | ||
"description": "the mighty option parser used by yargs", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "nyc mocha test/*.js", | ||
"posttest": "standard", | ||
"coverage": "nyc report --reporter=text-lcov | coveralls", | ||
"release": "standard-version" | ||
}, | ||
"repository": { | ||
"url": "git@github.com:yargs/yargs-parser.git" | ||
}, | ||
"keywords": [ | ||
"argument", | ||
"parser", | ||
"yargs", | ||
"command", | ||
"cli", | ||
"parsing", | ||
"option", | ||
"args", | ||
"argument" | ||
], | ||
"author": "Ben Coe <ben@npmjs.com>", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.0.2", | ||
"mocha": "^5.2.0", | ||
"nyc": "workspace:*", | ||
"standard": "link:../standard" | ||
}, | ||
"dependencies": { | ||
"camelcase": "^5.0.0", | ||
"decamelize": "portal:../decamelize" | ||
}, | ||
"optionalDependencies": { | ||
"foo": "~0.0.7" | ||
}, | ||
"peerDependencies": { | ||
"bar": "workspace:^" | ||
}, | ||
"files": [ | ||
"lib", | ||
"index.js" | ||
], | ||
"engine": { | ||
"node": ">=6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters