@gearbox-protocol/deploy-tools 4.6.0-next.2 → 4.6.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.
- package/dist/index.mjs +2 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -328331,12 +328331,10 @@ function zeroLT() {
|
|
|
328331
328331
|
|
|
328332
328332
|
// src/index.ts
|
|
328333
328333
|
import { readFileSync } from "node:fs";
|
|
328334
|
-
import {
|
|
328335
|
-
import { fileURLToPath } from "node:url";
|
|
328334
|
+
import { resolve as resolve2 } from "node:path";
|
|
328336
328335
|
var program2 = new Command();
|
|
328337
|
-
var __dirname2 = dirname(fileURLToPath(import.meta.url));
|
|
328338
328336
|
var { version: version4 } = JSON.parse(
|
|
328339
|
-
readFileSync(resolve2(
|
|
328337
|
+
readFileSync(resolve2(__dirname, "../package.json"), "utf8")
|
|
328340
328338
|
);
|
|
328341
328339
|
program2.name("deploy-tools").description("gearbox deploy tools").version(version4);
|
|
328342
328340
|
program2.addCommand(addressTree());
|