@agoric/xsnap 0.14.3-u13.0 → 0.14.3-u14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [0.14.3-u14.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/xsnap@0.14.3-u13.0...@agoric/xsnap@0.14.3-u14.0) (2024-02-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @agoric/xsnap
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
### [0.14.3-u13.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/xsnap@0.14.3-u12.0...@agoric/xsnap@0.14.3-u13.0) (2023-12-07)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @agoric/xsnap
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/xsnap",
|
|
3
|
-
"version": "0.14.3-
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.14.3-u14.0",
|
|
4
|
+
"description": "Snapshotting VM worker based on Moddable's XS Javascript engine",
|
|
5
5
|
"author": "Agoric",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"type": "module",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"repl": "node src/xsrepl.js",
|
|
15
|
-
"build:bin": "if
|
|
16
|
-
"build:env": "
|
|
15
|
+
"build:bin": "if test -d ./test; then node src/build.js; else yarn build:from-env; fi",
|
|
16
|
+
"build:env": "test -d ./test && node src/build.js --show-env > build.env",
|
|
17
17
|
"build:from-env": "{ cat build.env; echo node src/build.js; } | xargs env",
|
|
18
18
|
"build": "yarn build:bin && yarn build:env",
|
|
19
19
|
"postinstall": "yarn build:from-env",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@agoric/assert": "^0.6.1-u11wf.0",
|
|
31
|
-
"@agoric/internal": "^0.4.0-
|
|
31
|
+
"@agoric/internal": "^0.4.0-u14.0",
|
|
32
32
|
"@agoric/xsnap-lockdown": "^0.14.1-u13.0",
|
|
33
33
|
"@endo/bundle-source": "2.5.2-upstream-rollup",
|
|
34
34
|
"@endo/eventual-send": "0.17.2",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"timeout": "2m",
|
|
62
62
|
"workerThreads": false
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "b3a6f3374cb3bddab39fc6d6f426429cae6c29c6"
|
|
65
65
|
}
|