@git.zone/cli 2.16.1 → 2.17.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_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/mod_config/index.js +867 -26
- package/package.json +1 -1
- package/readme.md +9 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/mod_config/index.ts +974 -26
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@git.zone/cli",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.17.0",
|
|
5
5
|
"description": "A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
7
7
|
"typings": "dist_ts/index.d.ts",
|
package/readme.md
CHANGED
|
@@ -258,6 +258,14 @@ Useful config commands:
|
|
|
258
258
|
# Show current @git.zone/cli config
|
|
259
259
|
gitzone config show --json
|
|
260
260
|
|
|
261
|
+
# Configure project basics, CLI behavior, and release targets interactively
|
|
262
|
+
gitzone config project
|
|
263
|
+
gitzone config cli
|
|
264
|
+
gitzone config release
|
|
265
|
+
|
|
266
|
+
# Validate schema, legacy keys, release targets, registries, and npm auth
|
|
267
|
+
gitzone config doctor
|
|
268
|
+
|
|
261
269
|
# Read the npm release target registries
|
|
262
270
|
gitzone config get release.targets.npm.registries
|
|
263
271
|
|
|
@@ -404,7 +412,7 @@ gitzone config show --json
|
|
|
404
412
|
|
|
405
413
|
## License and Legal Information
|
|
406
414
|
|
|
407
|
-
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [
|
|
415
|
+
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [license](./license) file.
|
|
408
416
|
|
|
409
417
|
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
|
410
418
|
|
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/cli',
|
|
6
|
-
version: '2.
|
|
6
|
+
version: '2.17.0',
|
|
7
7
|
description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
|
|
8
8
|
}
|