-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable node-gyp-build as fallback.
Needed for ARM, which is presently not supported by prebuildify due to lack of official node builds: nodejs/node#25998
- Loading branch information
1 parent
ec2ff8d
commit 2627e8b
Showing
6 changed files
with
16 additions
and
12 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
File renamed without changes.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "native-reg", | ||
"description": "Native in-process low-level windows registry access.", | ||
"version": "1.0.0", | ||
"version": "1.1.0-alpha.0", | ||
"repository": "https://github.com/simonbuchan/native-reg", | ||
"bugs": "https://github.com/simonbuchan/native-reg/issues", | ||
"license": "MIT", | ||
|
@@ -13,33 +13,32 @@ | |
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"gypfile": false, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"test", | ||
"binding/prebuilds", | ||
"binding/binding.gyp", | ||
"prebuilds", | ||
"binding.gyp", | ||
"*.cc" | ||
], | ||
"scripts": { | ||
"install": "echo using prebuilds", | ||
"install": "node-gyp-build", | ||
"prepack": "yarn rebuild", | ||
"rebuild": "yarn clean && yarn build && yarn test", | ||
"clean": "rimraf build lib prebuilds", | ||
"build": "yarn build:js && yarn build:ia32 && yarn build:x64", | ||
"build:js": "tsc -p src", | ||
"build:ia32": "prebuildify --napi --target [email protected] --cwd binding --arch ia32", | ||
"build:x64": "prebuildify --napi --target [email protected] --cwd binding --arch x64", | ||
"build:ia32": "prebuildify --napi --target [email protected] --arch ia32", | ||
"build:x64": "prebuildify --napi --target [email protected] --arch x64", | ||
"test": "mocha --ui tdd" | ||
}, | ||
"dependencies": { | ||
"node-gyp-build": "4" | ||
"node-gyp-build": "4", | ||
"node-addon-api": "4" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "12", | ||
"mocha": "9", | ||
"node-addon-api": "4", | ||
"prebuildify": "4", | ||
"rimraf": "3", | ||
"typescript": "~4.4" | ||
|
File renamed without changes.
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