@git.zone/cli 2.16.1 → 2.18.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 +978 -26
- package/package.json +1 -1
- package/readme.md +12 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/mod_config/index.ts +1109 -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.18.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,17 @@ 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
|
+
|
|
269
|
+
# Use opencode to repair configuration issues found by doctor
|
|
270
|
+
gitzone config fix
|
|
271
|
+
|
|
261
272
|
# Read the npm release target registries
|
|
262
273
|
gitzone config get release.targets.npm.registries
|
|
263
274
|
|
|
@@ -404,7 +415,7 @@ gitzone config show --json
|
|
|
404
415
|
|
|
405
416
|
## License and Legal Information
|
|
406
417
|
|
|
407
|
-
This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [
|
|
418
|
+
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
419
|
|
|
409
420
|
**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
421
|
|
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.18.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
|
}
|