@agoric/internal 0.3.3-mainnet1B-dev-2d6b13f.0 → 0.3.3-mainnet1B-dev-867dea5.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/internal",
3
- "version": "0.3.3-mainnet1B-dev-2d6b13f.0+2d6b13f",
3
+ "version": "0.3.3-mainnet1B-dev-867dea5.0+867dea5",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint:types": "tsc -p jsconfig.json"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/zone": "0.2.3-mainnet1B-dev-2d6b13f.0+2d6b13f",
23
+ "@agoric/zone": "0.2.3-mainnet1B-dev-867dea5.0+867dea5",
24
24
  "@endo/far": "0.2.18",
25
25
  "@endo/marshal": "0.8.5",
26
26
  "@endo/patterns": "0.2.2",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "2d6b13f85e7f81644f12be02c2ca9344bd056d2f"
45
+ "gitHead": "867dea564f773bcf9b8332241358eb0e5608eab7"
46
46
  }
@@ -1 +1 @@
1
- {"version":3,"file":"createBundles.d.ts","sourceRoot":"","sources":["createBundles.js"],"names":[],"mappings":"AAUO,6EAyBN;AAEM,mFAMN;AAEM,iGAkCN"}
1
+ {"version":3,"file":"createBundles.d.ts","sourceRoot":"","sources":["createBundles.js"],"names":[],"mappings":"AAWO,6EA+BN;AAEM,mFAMN;AAEM,iGAkCN"}
@@ -1,3 +1,4 @@
1
+ /* global process */
1
2
  // Use modules not prefixed with `node:` since some deploy scripts may
2
3
  // still be running in esm emulation
3
4
  import path from 'path';
@@ -29,7 +30,13 @@ export const createBundlesFromAbsolute = async sourceBundles => {
29
30
 
30
31
  for (const args of cacheToArgs.values()) {
31
32
  console.log(BUNDLE_SOURCE_PROGRAM, ...args);
32
- const { status } = spawnSync(prog, args, { stdio: 'inherit' });
33
+ const env = /** @type {NodeJS.ProcessEnv} */ (
34
+ /** @type {unknown} */ ({
35
+ __proto__: process.env,
36
+ LOCKDOWN_OVERRIDE_TAMING: 'severe',
37
+ })
38
+ );
39
+ const { status } = spawnSync(prog, args, { stdio: 'inherit', env });
33
40
  status === 0 ||
34
41
  Fail`${q(BUNDLE_SOURCE_PROGRAM)} failed with status ${q(status)}`;
35
42
  }