-
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 - ERR_PNPM_UN…
…SUPPORTED_ENGINE (#10419) * adds exception handler for PNPM_UNSUPPORTED_ENGINE
- Loading branch information
1 parent
4bbcea3
commit f71537d
Showing
11 changed files
with
149 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
1 change: 1 addition & 0 deletions
1
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine/.npmrc
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 @@ | ||
engine-strict=true |
13 changes: 13 additions & 0 deletions
13
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine/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,13 @@ | ||
{ | ||
"name": "test", | ||
"version": "1.1.1", | ||
"private": true, | ||
"dependencies": { | ||
"@blocknote/core": "^0.15.3" | ||
}, | ||
"engines": { | ||
"pnpm": ">=8.0.0 <11.0.0", | ||
"node": ">=18.0.0 <19.0.0" | ||
}, | ||
"packageManager": "pnpm@8.4.0+sha1.73c608c602d520c436c7b250330315d83ffcc1ee" | ||
} |
6 changes: 6 additions & 0 deletions
6
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_npm/.npmrc
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 @@ | ||
engine-strict=true |
15 changes: 15 additions & 0 deletions
15
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_npm/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,15 @@ | ||
|
||
{ | ||
"name": "name", | ||
"version": "0.0.0", | ||
"private": true, | ||
"devDependencies": { | ||
"@npmcli/fs": "3.1.0" | ||
}, | ||
"engines": { | ||
"node": "20.11.1", | ||
"npm": "use pnpm", | ||
"pnpm": ">=9", | ||
"yarn": "use pnpm" | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_npm/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_pnpm/.npmrc
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,5 @@ | ||
strict-peer-dependencies=false | ||
engine-strict=true | ||
registry=https://registry.npmjs.org/ | ||
hoist-pattern[]=*eslint* | ||
use-node-version=18.0.0 |
10 changes: 10 additions & 0 deletions
10
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_pnpm/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,10 @@ | ||
{ | ||
"name": "abc", | ||
"packageManager": "pnpm@8.15.1", | ||
"engines": { | ||
"node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^8.32.0" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
npm_and_yarn/spec/fixtures/projects/pnpm/unsupported_engine_pnpm/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.