@agoric/xsnap 0.14.3-u20.0 → 0.14.3-u21.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/README.md +3 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -47,6 +47,8 @@ The parent and child communicate using "commands".
|
|
|
47
47
|
|
|
48
48
|

|
|
49
49
|
|
|
50
|
+
<!-- FIXME this stopped working some time ago (was never in CI)
|
|
51
|
+
https://github.com/Agoric/agoric-sdk/issues/9955
|
|
50
52
|
# xsrepl
|
|
51
53
|
|
|
52
54
|
With `xsnap` comes an `xsrepl` command line tool.
|
|
@@ -75,3 +77,4 @@ xs> x
|
|
|
75
77
|
42
|
|
76
78
|
xs> quit
|
|
77
79
|
```
|
|
80
|
+
-->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/xsnap",
|
|
3
|
-
"version": "0.14.3-
|
|
3
|
+
"version": "0.14.3-u21.0",
|
|
4
4
|
"description": "Snapshotting VM worker based on Moddable's XS Javascript engine",
|
|
5
5
|
"author": "Agoric",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -12,24 +12,24 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"repl": "node src/xsrepl.js",
|
|
15
|
-
"build:bin": "if test -d ./test; then node src/build.js; else yarn build:from-env; fi",
|
|
15
|
+
"build:bin": "/bin/sh -c 'if test -d ./test; then node src/build.js; else yarn build:from-env; fi'",
|
|
16
16
|
"build:env": "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
|
-
"check-version": "
|
|
19
|
+
"check-version": "/bin/sh -c 'if test \"${npm_package_version}\" != \"$(./scripts/get_xsnap_version.sh)\"; then echo \"xsnap version mismatch; expected '${npm_package_version}'\"; exit 1; fi'",
|
|
20
20
|
"postinstall": "npm run build:from-env",
|
|
21
21
|
"clean": "rm -rf xsnap-native/xsnap/build",
|
|
22
|
-
"lint": "run-s --continue-on-error lint:*",
|
|
22
|
+
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
|
|
23
23
|
"lint:js": "eslint 'src/**/*.js' 'test/**/*.js' api.js",
|
|
24
|
-
"lint:types": "tsc",
|
|
24
|
+
"lint:types": "yarn run -T tsc",
|
|
25
25
|
"lint-fix": "eslint --fix 'src/**/*.js' 'test/**/*.js' api.js",
|
|
26
26
|
"test": "ava",
|
|
27
27
|
"test:c8": "c8 --all $C8_OPTIONS ava",
|
|
28
28
|
"test:xs": "exit 0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@agoric/internal": "^0.4.0-
|
|
32
|
-
"@agoric/xsnap-lockdown": "^0.14.1-
|
|
31
|
+
"@agoric/internal": "^0.4.0-u21.0",
|
|
32
|
+
"@agoric/xsnap-lockdown": "^0.14.1-u21.0",
|
|
33
33
|
"@endo/bundle-source": "^4.0.0",
|
|
34
34
|
"@endo/errors": "^1.2.10",
|
|
35
35
|
"@endo/eventual-send": "^1.3.1",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@endo/nat": "^5.1.0",
|
|
47
47
|
"@types/glob": "^8.1.0",
|
|
48
48
|
"ava": "^5.3.0",
|
|
49
|
-
"c8": "^10.1.
|
|
50
|
-
"execa": "^
|
|
49
|
+
"c8": "^10.1.3",
|
|
50
|
+
"execa": "^9.5.2"
|
|
51
51
|
},
|
|
52
52
|
"files": [
|
|
53
53
|
"LICENSE*",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"typeCoverage": {
|
|
80
80
|
"atLeast": 93.56
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "e4dd46857133403d584bcf822a81817b355532f9"
|
|
83
83
|
}
|