@agoric/deploy-script-support 0.10.4-dev-c42dff3.0 → 0.10.4-dev-3601b6c.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/package.json +10 -10
- package/src/coreProposalBehavior.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/deploy-script-support",
|
|
3
|
-
"version": "0.10.4-dev-
|
|
3
|
+
"version": "0.10.4-dev-3601b6c.0+3601b6c",
|
|
4
4
|
"description": "Helpers and other support for writing deploy scripts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/helpers.js",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
38
|
-
"@agoric/import-manager": "0.3.12-dev-
|
|
39
|
-
"@agoric/internal": "0.3.3-dev-
|
|
40
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
41
|
-
"@agoric/store": "0.9.3-dev-
|
|
42
|
-
"@agoric/time": "0.3.3-dev-
|
|
43
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
37
|
+
"@agoric/ertp": "0.16.3-dev-3601b6c.0+3601b6c",
|
|
38
|
+
"@agoric/import-manager": "0.3.12-dev-3601b6c.0+3601b6c",
|
|
39
|
+
"@agoric/internal": "0.3.3-dev-3601b6c.0+3601b6c",
|
|
40
|
+
"@agoric/notifier": "0.6.3-dev-3601b6c.0+3601b6c",
|
|
41
|
+
"@agoric/store": "0.9.3-dev-3601b6c.0+3601b6c",
|
|
42
|
+
"@agoric/time": "0.3.3-dev-3601b6c.0+3601b6c",
|
|
43
|
+
"@agoric/zoe": "0.26.3-dev-3601b6c.0+3601b6c",
|
|
44
44
|
"@endo/base64": "^1.0.7",
|
|
45
45
|
"@endo/bundle-source": "^3.4.0",
|
|
46
46
|
"@endo/errors": "^1.2.5",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@endo/zip": "^1.0.7"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@agoric/vats": "0.15.2-dev-
|
|
54
|
+
"@agoric/vats": "0.15.2-dev-3601b6c.0+3601b6c",
|
|
55
55
|
"@endo/init": "^1.1.4",
|
|
56
56
|
"ava": "^5.3.0",
|
|
57
57
|
"import-meta-resolve": "^2.2.1"
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"typeCoverage": {
|
|
75
75
|
"atLeast": 82.6
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "3601b6cd14e7e8fb97758cc515c81325e2c31aa7"
|
|
78
78
|
}
|
|
@@ -167,6 +167,7 @@ export const makeCoreProposalBehavior = ({
|
|
|
167
167
|
const installAdmin = E(agoricNamesAdmin).lookupAdmin('installation');
|
|
168
168
|
await Promise.all(
|
|
169
169
|
installationEntries.map(([key, value]) => {
|
|
170
|
+
produceInstallations[key].reset();
|
|
170
171
|
produceInstallations[key].resolve(value);
|
|
171
172
|
return E(installAdmin).update(key, value);
|
|
172
173
|
}),
|