-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes Dependabot::SharedHelpers::HelperSubprocessFailed - nested alia…
…ses not supported (#10292) * Handles nested dependencies issues and adds relevant test cases
- Loading branch information
1 parent
0014240
commit f97969f
Showing
4 changed files
with
78 additions
and
0 deletions.
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
26 changes: 26 additions & 0 deletions
26
npm_and_yarn/spec/fixtures/projects/npm/simple_with_nested_deps/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
npm_and_yarn/spec/fixtures/projects/npm/simple_with_nested_deps/package.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,26 @@ | ||
{ | ||
"name": "xyz", | ||
"version": "0.36.1", | ||
"type": "module", | ||
"description": "xxx", | ||
"repository": "git+https://github.com/waltfy/PROTO_TEST.git", | ||
"homepage": "https://github.com/waltfy/PROTO_TEST#readme", | ||
"bugs": "https://github.com/waltfy/PROTO_TEST/issues", | ||
"author": "", | ||
"contributors": [], | ||
"engines": { | ||
"node": ">=12" | ||
}, | ||
"main": "generators/app/index.js", | ||
"typings": "generators/app/index.d.ts", | ||
"files": [ | ||
"/generators" | ||
], | ||
"keywords": [], | ||
"scripts": { | ||
"build": "tsc -p tsconfig.build.json && npm run copy:templates" | ||
}, | ||
"dependencies": { | ||
"@docusaurus/theme-search-algolia": "^2.0.0-beta.9" | ||
} | ||
} |