@agoric/deploy-script-support 0.10.4-dev-da3b8a8.0 → 0.10.4-dev-afcbcd7.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.
Files changed (2) hide show
  1. package/package.json +14 -11
  2. package/src/helpers.js +2 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/deploy-script-support",
3
- "version": "0.10.4-dev-da3b8a8.0+da3b8a8",
3
+ "version": "0.10.4-dev-afcbcd7.0+afcbcd7",
4
4
  "description": "Helpers and other support for writing deploy scripts",
5
5
  "type": "module",
6
6
  "main": "src/helpers.js",
@@ -34,14 +34,14 @@
34
34
  },
35
35
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
36
36
  "dependencies": {
37
- "@agoric/assert": "0.6.1-dev-da3b8a8.0+da3b8a8",
38
- "@agoric/ertp": "0.16.3-dev-da3b8a8.0+da3b8a8",
39
- "@agoric/import-manager": "0.3.12-dev-da3b8a8.0+da3b8a8",
40
- "@agoric/internal": "0.3.3-dev-da3b8a8.0+da3b8a8",
41
- "@agoric/notifier": "0.6.3-dev-da3b8a8.0+da3b8a8",
42
- "@agoric/store": "0.9.3-dev-da3b8a8.0+da3b8a8",
43
- "@agoric/time": "0.3.3-dev-da3b8a8.0+da3b8a8",
44
- "@agoric/zoe": "0.26.3-dev-da3b8a8.0+da3b8a8",
37
+ "@agoric/assert": "0.6.1-dev-afcbcd7.0+afcbcd7",
38
+ "@agoric/ertp": "0.16.3-dev-afcbcd7.0+afcbcd7",
39
+ "@agoric/import-manager": "0.3.12-dev-afcbcd7.0+afcbcd7",
40
+ "@agoric/internal": "0.3.3-dev-afcbcd7.0+afcbcd7",
41
+ "@agoric/notifier": "0.6.3-dev-afcbcd7.0+afcbcd7",
42
+ "@agoric/store": "0.9.3-dev-afcbcd7.0+afcbcd7",
43
+ "@agoric/time": "0.3.3-dev-afcbcd7.0+afcbcd7",
44
+ "@agoric/zoe": "0.26.3-dev-afcbcd7.0+afcbcd7",
45
45
  "@endo/base64": "^0.2.34",
46
46
  "@endo/bundle-source": "^2.7.0",
47
47
  "@endo/far": "^0.2.21",
@@ -51,7 +51,7 @@
51
51
  "@endo/zip": "^0.2.34"
52
52
  },
53
53
  "devDependencies": {
54
- "@agoric/vats": "0.15.2-dev-da3b8a8.0+da3b8a8",
54
+ "@agoric/vats": "0.15.2-dev-afcbcd7.0+afcbcd7",
55
55
  "@endo/init": "^0.5.59",
56
56
  "ava": "^5.3.0",
57
57
  "import-meta-resolve": "^2.2.1"
@@ -72,5 +72,8 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "gitHead": "da3b8a80f4ae8ccf73bfd7cdeef376a67c673b7d"
75
+ "typeCoverage": {
76
+ "atLeast": 79.84
77
+ },
78
+ "gitHead": "afcbcd727d7c9a4c6330d619c7846c9963b1e25a"
76
79
  }
package/src/helpers.js CHANGED
@@ -1,9 +1,7 @@
1
1
  // @ts-check
2
2
 
3
- // Ambient types. Needed only for dev but this does a runtime import.
4
- // https://github.com/Agoric/agoric-sdk/issues/6512
5
- import '@agoric/time';
6
- import '@agoric/zoe/exported.js';
3
+ /// <reference types="../../time/src/types.js" />
4
+ /// <reference path="../../zoe/exported.js" />
7
5
 
8
6
  import { E } from '@endo/far';
9
7
  import bundleSource from '@endo/bundle-source';