@git.zone/tsdoc 1.11.3 → 1.11.4
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/tsdoc',
|
|
6
|
-
version: '1.11.
|
|
6
|
+
version: '1.11.4',
|
|
7
7
|
description: 'A comprehensive TypeScript documentation tool that leverages AI to generate and enhance project documentation, including dynamic README creation, API docs via TypeDoc, and smart commit message generation.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxpQkFBaUI7SUFDdkIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDhNQUE4TTtDQUM1TixDQUFBIn0=
|
|
@@ -147,7 +147,7 @@ Here is the structure of the JSON you must return:
|
|
|
147
147
|
{
|
|
148
148
|
"recommendedNextVersionLevel": "fix" | "feat" | "BREAKING CHANGE",
|
|
149
149
|
"recommendedNextVersionScope": "string",
|
|
150
|
-
"recommendedNextVersionMessage": "string",
|
|
150
|
+
"recommendedNextVersionMessage": "string (ONLY the description body WITHOUT the type(scope): prefix - e.g. 'bump dependency to ^1.2.6' NOT 'fix(deps): bump dependency to ^1.2.6')",
|
|
151
151
|
"recommendedNextVersionDetails": ["string"],
|
|
152
152
|
"recommendedNextVersion": "x.x.x"
|
|
153
153
|
}
|
package/dist_ts/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@git.zone/tsdoc",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A comprehensive TypeScript documentation tool that leverages AI to generate and enhance project documentation, including dynamic README creation, API docs via TypeDoc, and smart commit message generation.",
|
|
6
6
|
"type": "module",
|
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"bin": {
|
|
13
13
|
"tsdoc": "cli.js"
|
|
14
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "(tstest test/ --verbose --logfile --timeout 600) && npm run testCli",
|
|
17
|
+
"testCli": "(node ./cli.ts.js) && (node ./cli.ts.js aidocs)",
|
|
18
|
+
"build": "(tsbuild --web --allowimplicitany)",
|
|
19
|
+
"buildDocs": "tsdoc"
|
|
20
|
+
},
|
|
15
21
|
"devDependencies": {
|
|
16
22
|
"@git.zone/tsbuild": "^4.0.2",
|
|
17
23
|
"@git.zone/tsrun": "^2.0.1",
|
|
@@ -75,10 +81,5 @@
|
|
|
75
81
|
"url": "https://gitlab.com/gitzone/tsdoc/issues"
|
|
76
82
|
},
|
|
77
83
|
"homepage": "https://gitlab.com/gitzone/tsdoc#readme",
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
"testCli": "(node ./cli.ts.js) && (node ./cli.ts.js aidocs)",
|
|
81
|
-
"build": "(tsbuild --web --allowimplicitany)",
|
|
82
|
-
"buildDocs": "tsdoc"
|
|
83
|
-
}
|
|
84
|
-
}
|
|
84
|
+
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
85
|
+
}
|
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/tsdoc',
|
|
6
|
-
version: '1.11.
|
|
6
|
+
version: '1.11.4',
|
|
7
7
|
description: 'A comprehensive TypeScript documentation tool that leverages AI to generate and enhance project documentation, including dynamic README creation, API docs via TypeDoc, and smart commit message generation.'
|
|
8
8
|
}
|
|
@@ -180,7 +180,7 @@ Here is the structure of the JSON you must return:
|
|
|
180
180
|
{
|
|
181
181
|
"recommendedNextVersionLevel": "fix" | "feat" | "BREAKING CHANGE",
|
|
182
182
|
"recommendedNextVersionScope": "string",
|
|
183
|
-
"recommendedNextVersionMessage": "string",
|
|
183
|
+
"recommendedNextVersionMessage": "string (ONLY the description body WITHOUT the type(scope): prefix - e.g. 'bump dependency to ^1.2.6' NOT 'fix(deps): bump dependency to ^1.2.6')",
|
|
184
184
|
"recommendedNextVersionDetails": ["string"],
|
|
185
185
|
"recommendedNextVersion": "x.x.x"
|
|
186
186
|
}
|