Skip to content
New issue

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

feat: Change node-gyp to @electron/node-gyp #1157

Merged
merged 9 commits into from
Oct 8, 2024
Merged
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
"keywords": [
"electron"
],
"author": "Paul Betts <[email protected]>",
"authors": [
"Ani Betts <[email protected]>",
"Electron Community"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/rebuild/issues"
Expand All @@ -39,6 +42,7 @@
"node": ">=12.13.0"
},
"dependencies": {
"@electron/node-gyp": "^10.2.0-electron.1",
"@malept/cross-spawn-promise": "^2.0.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
Expand All @@ -47,7 +51,6 @@
"got": "^11.7.0",
"node-abi": "^3.45.0",
"node-api-version": "^0.2.0",
"node-gyp": "^9.0.0",
"ora": "^5.1.0",
"read-binary-file-arch": "^1.0.6",
"semver": "^7.3.5",
Expand Down
2 changes: 1 addition & 1 deletion src/module-type/node-gyp/worker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import NodeGypRunner from 'node-gyp';
import NodeGypRunner from '@electron/node-gyp';
import { promisify } from 'util';

process.on('message', async ({
Expand Down
2 changes: 1 addition & 1 deletion typings/ambient.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
declare module 'node-gyp';
declare module '@electron/node-gyp';
Loading