@devkong/cli-nx 0.0.7 → 0.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devkong/cli-nx",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
@@ -42,8 +42,6 @@ To automatically tag your code with an incremented version number (e.g., 1, 2, 3
42
42
  kong publish-version --verbose
43
43
  ```
44
44
 
45
- This command will build your extension and tag it with the next available version.
46
-
47
45
  ### List Available Versions
48
46
 
49
47
  To see all available versions of your extension, run:
@@ -57,7 +55,7 @@ kong list-versions
57
55
  You can assign an alias (e.g., stable, beta) to a specific version. This alias will appear in the UI as a separate step in the workflow. For example, to assign the alias stable to version 1, use:
58
56
 
59
57
  ```shell script
60
- kong set-alias stable 1 --verbose
58
+ kong set-alias stable 1
61
59
  ```
62
60
 
63
61
  ### Running and Debugging Tests