-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release dev under alpha and fix windows install
Signed-off-by: Berend Sliedrecht <[email protected]>
- Loading branch information
Berend Sliedrecht
committed
Oct 27, 2023
1 parent
aa8c03b
commit 9b11ef2
Showing
9 changed files
with
34 additions
and
56 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
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 was deleted.
Oops, something went wrong.
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,14 @@ | ||
const { execSync } = require('node:child_process') | ||
const { arch, platform } = require('os') | ||
|
||
const archTable = { | ||
x64: 'x86_64', | ||
arm64: 'aarch64', | ||
} | ||
|
||
const targetPlatform = platform() === 'win32' ? 'windows' : platform() | ||
const targetArchitecture = archTable[arch()] | ||
|
||
const command = `node-pre-gyp install --target_arch=${targetArchitecture} --target_platform=${targetPlatform}` | ||
|
||
execSync(command) |
This file was deleted.
Oops, something went wrong.
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
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,11 +1,11 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"packages": ["indy-vdr-*"], | ||
"version": "0.2.0-dev.2", | ||
"version": "0.2.0-dev.3", | ||
"npmClient": "yarn", | ||
"command": { | ||
"version": { | ||
"allowBranch": "main" | ||
} | ||
}, | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json" | ||
} | ||
} |