ng-tablekit 1.0.1 → 1.0.2

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/PUBLISHING.md CHANGED
@@ -40,7 +40,7 @@ The package is configured for public npm distribution as `ng-tablekit`.
40
40
  5. Verify the public command from a clean Angular 19 workspace:
41
41
 
42
42
  ```bash
43
- npx ng-tablekit@latest add report-page
43
+ npx --yes ng-tablekit add report-page
44
44
  ```
45
45
 
46
46
  For later releases, update the version with `npm version patch`, `minor`, or `major` before publishing. Never reuse an npm version that has already been published.
package/README.md CHANGED
@@ -15,13 +15,13 @@ The CLI runs on Windows, macOS, and Linux. It detects the nearest Angular worksp
15
15
  Add a report page with filter, Excel export, PDF export, global search, sorting, and pagination:
16
16
 
17
17
  ```bash
18
- npx ng-tablekit@latest add report-page
18
+ npx --yes ng-tablekit add report-page
19
19
  ```
20
20
 
21
21
  Or add a master page with global search, Add/Edit drawers, row actions, role mapping, sorting, and pagination:
22
22
 
23
23
  ```bash
24
- npx ng-tablekit@latest add master-page
24
+ npx --yes ng-tablekit add master-page
25
25
  ```
26
26
 
27
27
  Then start the Angular application and open `/report-page` or `/master-page`.
@@ -38,9 +38,9 @@ The CLI automatically:
38
38
  ## Commands
39
39
 
40
40
  ```bash
41
- npx ng-tablekit@latest list
42
- npx ng-tablekit@latest --help
43
- npx ng-tablekit@latest --version
41
+ npx --yes ng-tablekit list
42
+ npx --yes ng-tablekit --help
43
+ npx --yes ng-tablekit --version
44
44
  ```
45
45
 
46
46
  Options for `add`:
@@ -57,7 +57,7 @@ Options for `add`:
57
57
  Example with a custom destination and route:
58
58
 
59
59
  ```bash
60
- npx ng-tablekit@latest add master-page --path src/app/admin/users --route users
60
+ npx --yes ng-tablekit add master-page --path src/app/admin/users --route users
61
61
  ```
62
62
 
63
63
  ## Optional project installation
package/bin/tablekit.mjs CHANGED
@@ -71,8 +71,8 @@ function printHelp() {
71
71
  console.log(`TableKit CLI
72
72
 
73
73
  Usage:
74
- npx ng-tablekit@latest list
75
- npx ng-tablekit@latest add <report-page|master-page> [options]
74
+ npx --yes ng-tablekit list
75
+ npx --yes ng-tablekit add <report-page|master-page> [options]
76
76
 
77
77
  Options:
78
78
  --project <directory> Angular workspace root (default: nearest parent workspace)
@@ -86,9 +86,9 @@ Options:
86
86
  -h, --help Show this help
87
87
 
88
88
  Examples:
89
- npx ng-tablekit@latest add report-page
90
- npx ng-tablekit@latest add master-page --path src/app/admin/master-page
91
- npx ng-tablekit@latest add report-page --skip-install
89
+ npx --yes ng-tablekit add report-page
90
+ npx --yes ng-tablekit add master-page --path src/app/admin/master-page
91
+ npx --yes ng-tablekit add report-page --skip-install
92
92
  `);
93
93
  }
94
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-tablekit",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Cross-platform CLI for adding Angular 19 and NG-ZORRO report and master table pages.",
5
5
  "type": "module",
6
6
  "license": "MIT",