We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing latest node-gyp version 11.0.0 elicits a warning from npm install:
npm install
npm warn deprecated [email protected]: Rimraf versions prior to v4 are no longer supported
OS Name: Microsoft Windows 11 Pro OS Version: 10.0.26100 N/A Build 26100 System Type: x64-based PC
The text was updated successfully, but these errors were encountered:
Can you share the package.json that are installing? I can't reproduce from only installing node-gyp@^11.0.0:
package.json
node-gyp@^11.0.0
❯ cat package.json { "name": "node-gyp-11", "version": "1.0.0", "dependencies": { "node-gyp": "^11.0.0" } } ❯ rm -rf package-lock.json node_modules ❯ npm --version 10.9.2 ❯ npm i added 98 packages, and audited 99 packages in 828ms 16 packages are looking for funding run `npm fund` for details found 0 vulnerabilities ❯ npm ls rimraf [email protected] /Users/lukekarrys/Desktop/scratch/node-gyp-11 └─┬ [email protected] └─┬ [email protected] └─┬ [email protected] └── [email protected]
Sorry, something went wrong.
Wrong target. Seems the problem is created by node-gyp called by electron-builder:
PS D:\Projects> npm ls rimraf [email protected] D:\Projects\STMng +-- [email protected] | `-- [email protected] | `-- @electron/[email protected] | `-- [email protected] | +-- [email protected] | | `-- [email protected] | | +-- @npmcli/[email protected] | | | `-- [email protected] | | `-- [email protected] deduped | `-- [email protected] `-- [email protected] `-- [email protected] `-- [email protected] `-- [email protected]
I close this issue and reopen it for electron-builder asking to upgrade their copy of node-gyp. Thanks for testing!
Opened electron-userland/electron-builder#8726
No branches or pull requests
Installing latest node-gyp version 11.0.0 elicits a warning from
npm install
:The text was updated successfully, but these errors were encountered: