ph-cmd 0.34.1 → 0.35.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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +6 -3
package/dist/cli.js CHANGED
@@ -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.34.1");
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.35.0");
26
26
  registerCommands(program);
27
27
  program.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ph-cmd",
3
- "version": "0.34.1",
3
+ "version": "0.35.0",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",
@@ -17,8 +17,11 @@
17
17
  "author": "",
18
18
  "dependencies": {
19
19
  "commander": "^12.1.0",
20
- "@powerhousedao/codegen": "0.36.0",
21
- "@powerhousedao/scalars": "1.23.0"
20
+ "@powerhousedao/codegen": "0.37.0",
21
+ "@powerhousedao/scalars": "1.25.0"
22
+ },
23
+ "devDependencies": {
24
+ "tsup": "^8.3.6"
22
25
  },
23
26
  "scripts": {
24
27
  "build": "tsup",