-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: patch xsnap to separate from yarn project
works around Agoric/agoric-sdk#9261
- Loading branch information
Showing
3 changed files
with
40 additions
and
41 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
.yarn/patches/@agoric-xsnap-npm-0.14.3-u14.0-768ce73dba.patch
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,19 @@ | ||
diff --git a/package.json b/package.json | ||
index 25ddb12bf728223569f4e53ed8cca20e51813725..876d249fa2584d748f6da234d5104c42090b5f34 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -12,11 +12,11 @@ | ||
}, | ||
"scripts": { | ||
"repl": "node src/xsrepl.js", | ||
- "build:bin": "if test -d ./test; then node src/build.js; else yarn build:from-env; fi", | ||
+ "build:bin": "if test -d ./test; then node src/build.js; else npm run build:from-env; fi", | ||
"build:env": "test -d ./test && node src/build.js --show-env > build.env", | ||
"build:from-env": "{ cat build.env; echo node src/build.js; } | xargs env", | ||
- "build": "yarn build:bin && yarn build:env", | ||
- "postinstall": "yarn build:from-env", | ||
+ "build": "npm run build:bin && npm run build:env", | ||
+ "postinstall": "npm run build:from-env", | ||
"clean": "rm -rf xsnap-native/xsnap/build", | ||
"lint": "run-s --continue-on-error lint:*", | ||
"lint:js": "eslint 'src/**/*.js' 'test/**/*.js' api.js", |
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