ph-cmd 0.33.0 → 0.34.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/dist/{chunk-APQST5R3.js → chunk-AI5ZRXRH.js} +1 -1
- package/dist/{chunk-ZNKFHKHU.js → chunk-E2HJIPXL.js} +3 -1
- package/dist/{chunk-PRTJI6ZS.js → chunk-S7QYZX4U.js} +1 -1
- package/dist/{chunk-TCTQ4POZ.js → chunk-VE7YEAW3.js} +1 -1
- package/dist/cli.js +5 -5
- package/dist/commands/forward.js +2 -2
- package/dist/commands/index.js +3 -3
- package/dist/commands/setup-globals.js +2 -2
- package/dist/index.js +3 -3
- package/dist/utils.js +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
forwardCommand
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-AI5ZRXRH.js";
|
|
5
5
|
import {
|
|
6
6
|
registerCommands
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-VE7YEAW3.js";
|
|
8
8
|
import "./chunk-5HAGY755.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-S7QYZX4U.js";
|
|
10
10
|
import {
|
|
11
11
|
PH_CLI_COMMANDS
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-E2HJIPXL.js";
|
|
13
13
|
|
|
14
14
|
// src/cli.ts
|
|
15
15
|
import { Command } from "commander";
|
|
@@ -22,6 +22,6 @@ var defaultCommand = (options) => {
|
|
|
22
22
|
const args = filteredArgs.join(" ");
|
|
23
23
|
forwardCommand(args, { debug: !!options.verbose, isPackageScript });
|
|
24
24
|
};
|
|
25
|
-
program.name("ph-cmd").description("CLI tool for Powerhouse DAO").allowUnknownOption().option("--verbose", "Enable debug mode").option("--script", "Run the command as a package.json script").action(defaultCommand).version("0.
|
|
25
|
+
program.name("ph-cmd").description("CLI tool for Powerhouse DAO").allowUnknownOption().option("--verbose", "Enable debug mode").option("--script", "Run the command as a package.json script").action(defaultCommand).version("0.34.0");
|
|
26
26
|
registerCommands(program);
|
|
27
27
|
program.parse(process.argv);
|
package/dist/commands/forward.js
CHANGED
package/dist/commands/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commands,
|
|
3
3
|
registerCommands
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-VE7YEAW3.js";
|
|
5
5
|
import {
|
|
6
6
|
init,
|
|
7
7
|
initCommand
|
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
import {
|
|
10
10
|
setupGlobals,
|
|
11
11
|
setupGlobalsCommand
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import "../chunk-
|
|
12
|
+
} from "../chunk-S7QYZX4U.js";
|
|
13
|
+
import "../chunk-E2HJIPXL.js";
|
|
14
14
|
export {
|
|
15
15
|
commands,
|
|
16
16
|
registerCommands as default,
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
commands
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-VE7YEAW3.js";
|
|
4
4
|
import {
|
|
5
5
|
init,
|
|
6
6
|
initCommand
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
setupGlobals,
|
|
10
10
|
setupGlobalsCommand
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-S7QYZX4U.js";
|
|
12
12
|
import {
|
|
13
13
|
HOME_DIR,
|
|
14
14
|
PH_BIN,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
getProjectInfo,
|
|
26
26
|
isPowerhouseProject,
|
|
27
27
|
packageManagers
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-E2HJIPXL.js";
|
|
29
29
|
export {
|
|
30
30
|
HOME_DIR,
|
|
31
31
|
PH_BIN,
|
package/dist/utils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ph-cmd",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"type": "module",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"author": "",
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"commander": "^12.1.0",
|
|
20
|
-
"@powerhousedao/codegen": "0.
|
|
21
|
-
"@powerhousedao/scalars": "1.
|
|
20
|
+
"@powerhousedao/codegen": "0.35.0",
|
|
21
|
+
"@powerhousedao/scalars": "1.23.0"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsup",
|