@zuplo/cli 1.20.0 → 1.21.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/README.md CHANGED
@@ -10,5 +10,6 @@ Commands:
10
10
  zup test Runs the tests under /tests against an endpoint
11
11
 
12
12
  Options:
13
- --help Show help [boolean]
13
+ --version Show version number [boolean]
14
+ --help Show help [boolean]
14
15
  ```
package/dist/cli.js CHANGED
@@ -12,7 +12,6 @@ const MIN_NODE_VERSION = "18.0.0";
12
12
  if (gte(process.versions.node, MIN_NODE_VERSION)) {
13
13
  void yargs(hideBin(process.argv))
14
14
  .env("ZUPLO")
15
- .version(false)
16
15
  .command(deleteZup)
17
16
  .command(deploy)
18
17
  .command(list)
@@ -3,7 +3,7 @@ import { validDeployDirectoryValidator } from "../common/validators/file-system-
3
3
  import { YargsChecker } from "../common/validators/lib.js";
4
4
  import { deploy } from "../deploy/handler.js";
5
5
  export default {
6
- desc: "Deploys current Git branch of the current directory.",
6
+ desc: "Deploys current Git branch of the current directory",
7
7
  command: "deploy",
8
8
  builder: (yargs) => {
9
9
  return yargs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zuplo/cli",
3
- "version": "1.20.0",
3
+ "version": "1.21.0",
4
4
  "type": "module",
5
5
  "repository": "https://github.com/zuplo/cli",
6
6
  "author": "Zuplo, Inc.",