@agoric/xsnap 0.14.3-other-dev-fbe72e7.0.fbe72e7 → 0.14.3-other-dev-d15096d.0.d15096d
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/package.json +6 -6
- package/src/replay.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/xsnap",
|
|
3
|
-
"version": "0.14.3-other-dev-
|
|
3
|
+
"version": "0.14.3-other-dev-d15096d.0.d15096d",
|
|
4
4
|
"description": "Snapshotting VM worker based on Moddable's XS Javascript engine",
|
|
5
5
|
"author": "Agoric",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"postinstall": "npm run build:from-env",
|
|
21
21
|
"clean": "rm -rf xsnap-native/xsnap/build",
|
|
22
22
|
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
|
|
23
|
-
"lint:
|
|
23
|
+
"lint:eslint": "yarn run -T eslint 'src/**/*.js' 'test/**/*.js' api.js",
|
|
24
24
|
"lint:types": "yarn run -T tsc",
|
|
25
|
-
"lint-fix": "eslint --fix
|
|
25
|
+
"lint-fix": "yarn lint:eslint --fix",
|
|
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.3.3-other-dev-
|
|
32
|
-
"@agoric/xsnap-lockdown": "0.14.1-other-dev-
|
|
31
|
+
"@agoric/internal": "0.3.3-other-dev-d15096d.0.d15096d",
|
|
32
|
+
"@agoric/xsnap-lockdown": "0.14.1-other-dev-d15096d.0.d15096d",
|
|
33
33
|
"@endo/bundle-source": "^4.1.2",
|
|
34
34
|
"@endo/errors": "^1.2.13",
|
|
35
35
|
"@endo/eventual-send": "^1.3.4",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"engines": {
|
|
82
82
|
"node": "^20.9 || ^22.11"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "d15096dc4ff8b96e9b6cd11954c20d3a9efbb393"
|
|
85
85
|
}
|
package/src/replay.js
CHANGED
|
@@ -96,7 +96,7 @@ function makeSyncAccess(path, { readdirSync, readFileSync }) {
|
|
|
96
96
|
* @returns {XSnap}
|
|
97
97
|
*
|
|
98
98
|
* @typedef {ReturnType <typeof import('./xsnap.js').xsnap>} XSnap
|
|
99
|
-
* @
|
|
99
|
+
* @import {XSnapOptions} from './xsnap.js';
|
|
100
100
|
*/
|
|
101
101
|
export async function recordXSnap(options, folderPath, { writeFileSync }) {
|
|
102
102
|
const folder = makeSyncStorage(folderPath, { writeFileSync });
|