@gearbox-protocol/deploy-tools 5.66.0 → 5.67.1

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/dist/index.mjs +34 -6
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -85552,7 +85552,35 @@ var require_transport = __commonJS({
85552
85552
  onExit.unregister(stream);
85553
85553
  });
85554
85554
  }
85555
+ function processPreloadFlags() {
85556
+ const execArgv = process.execArgv;
85557
+ let hasPreload = false;
85558
+ const filtered = [];
85559
+ for (let i = 0; i < execArgv.length; i++) {
85560
+ const arg = execArgv[i];
85561
+ if (arg === "--import" || arg === "--require" || arg === "-r") {
85562
+ hasPreload = true;
85563
+ i++;
85564
+ continue;
85565
+ }
85566
+ if (arg.startsWith("--import=") || arg.startsWith("--require=") || arg.startsWith("-r=")) {
85567
+ hasPreload = true;
85568
+ continue;
85569
+ }
85570
+ filtered.push(arg);
85571
+ }
85572
+ return { hasPreload, filtered };
85573
+ }
85555
85574
  function buildStream(filename, workerData, workerOpts, sync) {
85575
+ if (!workerOpts.execArgv) {
85576
+ const { hasPreload, filtered } = processPreloadFlags();
85577
+ if (hasPreload && __require.main === void 0) {
85578
+ workerOpts = {
85579
+ ...workerOpts,
85580
+ execArgv: filtered
85581
+ };
85582
+ }
85583
+ }
85556
85584
  const stream = new ThreadStream({
85557
85585
  filename,
85558
85586
  workerData,
@@ -86214,7 +86242,7 @@ var require_levels = __commonJS({
86214
86242
  var require_meta = __commonJS({
86215
86243
  "../../node_modules/pino/lib/meta.js"(exports2, module2) {
86216
86244
  "use strict";
86217
- module2.exports = { version: "10.1.1" };
86245
+ module2.exports = { version: "10.2.0" };
86218
86246
  }
86219
86247
  });
86220
86248
 
@@ -315435,7 +315463,7 @@ function getRenderer(opts) {
315435
315463
  var package_default = {
315436
315464
  name: "@gearbox-protocol/deploy-tools",
315437
315465
  description: "Gearbox deploy tools",
315438
- version: "5.66.0",
315466
+ version: "5.67.1",
315439
315467
  homepage: "https://gearbox.fi",
315440
315468
  keywords: [
315441
315469
  "gearbox"
@@ -315475,10 +315503,10 @@ var package_default = {
315475
315503
  "@gearbox-protocol/deploy-tools-node": "0.0.0",
315476
315504
  "@gearbox-protocol/deploy-tools-shared": "0.0.0",
315477
315505
  "@gearbox-protocol/deploy-tools-types": "0.0.0",
315478
- "@gearbox-protocol/sdk": "12.3.16",
315506
+ "@gearbox-protocol/sdk": "12.5.0",
315479
315507
  "@gearbox-protocol/sdk-gov": "2.34.0-next.114",
315480
315508
  "@types/lodash-es": "^4.17.12",
315481
- "@types/node": "^25.0.8",
315509
+ "@types/node": "^25.0.9",
315482
315510
  "@types/react": "^19.2.8",
315483
315511
  "@types/react-dom": "^19.2.3",
315484
315512
  abitype: "^1.2.3",
@@ -315488,14 +315516,14 @@ var package_default = {
315488
315516
  esbuild: "^0.27.2",
315489
315517
  "lodash-es": "^4.17.22",
315490
315518
  "p-retry": "^7.1.1",
315491
- pino: "^10.1.1",
315519
+ pino: "^10.2.0",
315492
315520
  "pino-pretty": "^13.1.3",
315493
315521
  queue: "^7.0.0",
315494
315522
  react: "^19.2.3",
315495
315523
  "react-dom": "^19.2.3",
315496
315524
  table: "^6.9.0",
315497
315525
  tsx: "^4.21.0",
315498
- viem: "^2.44.2",
315526
+ viem: "^2.44.4",
315499
315527
  yaml: "^2.8.2",
315500
315528
  zod: "^4.3.5"
315501
315529
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "5.66.0",
4
+ "version": "5.67.1",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"
@@ -41,10 +41,10 @@
41
41
  "@gearbox-protocol/deploy-tools-node": "0.0.0",
42
42
  "@gearbox-protocol/deploy-tools-shared": "0.0.0",
43
43
  "@gearbox-protocol/deploy-tools-types": "0.0.0",
44
- "@gearbox-protocol/sdk": "12.3.16",
44
+ "@gearbox-protocol/sdk": "12.5.0",
45
45
  "@gearbox-protocol/sdk-gov": "2.34.0-next.114",
46
46
  "@types/lodash-es": "^4.17.12",
47
- "@types/node": "^25.0.8",
47
+ "@types/node": "^25.0.9",
48
48
  "@types/react": "^19.2.8",
49
49
  "@types/react-dom": "^19.2.3",
50
50
  "abitype": "^1.2.3",
@@ -54,14 +54,14 @@
54
54
  "esbuild": "^0.27.2",
55
55
  "lodash-es": "^4.17.22",
56
56
  "p-retry": "^7.1.1",
57
- "pino": "^10.1.1",
57
+ "pino": "^10.2.0",
58
58
  "pino-pretty": "^13.1.3",
59
59
  "queue": "^7.0.0",
60
60
  "react": "^19.2.3",
61
61
  "react-dom": "^19.2.3",
62
62
  "table": "^6.9.0",
63
63
  "tsx": "^4.21.0",
64
- "viem": "^2.44.2",
64
+ "viem": "^2.44.4",
65
65
  "yaml": "^2.8.2",
66
66
  "zod": "^4.3.5"
67
67
  }