fix(dependencies): Updated @git.zone/tsdoc from version 1.3.0 to 1.3.1

This commit is contained in:
Philipp Kunz 2024-06-23 19:51:17 +02:00
parent a3b7a33bc2
commit 5fc9bb0245
5 changed files with 16 additions and 9 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 23.06.2024 - 1.9.107 - {{nextVersionScope}}
fix(dependencies): Updated @git.zone/tsdoc from version 1.3.0 to 1.3.1
{{nextVersionDetails}}
## 1.9.106 - fix(dependencies): Updated @git.zone/tsdoc dependency from 1.2.2 to 1.3.0 in package.json and pnpm-lock.yaml.
## 1.9.99 - Core Updates
@ -32,4 +37,4 @@
- Updated @git.zone/tsdoc dependency version to ^1.2.2 in package.json and pnpm-lock.yaml
## 1.9.100 - Changelog Writing Fix
- Fix variable reassignment issue in changelog writing step
- Fix variable reassignment issue in changelog writing step

View File

@ -58,7 +58,7 @@
"@types/node": "^20.14.8"
},
"dependencies": {
"@git.zone/tsdoc": "^1.3.0",
"@git.zone/tsdoc": "^1.3.1",
"@push.rocks/commitinfo": "^1.0.12",
"@push.rocks/early": "^4.0.4",
"@push.rocks/gulp-function": "^3.0.7",

View File

@ -9,8 +9,8 @@ importers:
.:
dependencies:
'@git.zone/tsdoc':
specifier: ^1.3.0
version: 1.3.0
specifier: ^1.3.1
version: 1.3.1
'@push.rocks/commitinfo':
specifier: ^1.0.12
version: 1.0.12
@ -320,8 +320,8 @@ packages:
resolution: {integrity: sha512-ZrPkScaBQ7hHx6BUchRFfPB9tvb7RlNXwjk9qjkp6AcBcF38JgLcu/UDKDqRsuaFJpkK9oclyhA5bDA7SjXWZg==}
hasBin: true
'@git.zone/tsdoc@1.3.0':
resolution: {integrity: sha512-1nY/hrVKCgg/E2n70PM8NCT+4Obs63F4Q+DdoIVb4FkwdaKgyNKmOrJVvrYpFgdp7wHw2ctlm4QfkqyDVhz1+g==}
'@git.zone/tsdoc@1.3.1':
resolution: {integrity: sha512-TjaSC3obvbM0Z/npooH/+pa2QapE9K6xrQ0zK3mNNdiY+hfLJt6qotmDxWF8wwQ+PgQUiKkTJVWYiwxr6vv/8A==}
hasBin: true
'@git.zone/tsrun@1.2.46':
@ -3928,7 +3928,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
'@git.zone/tsdoc@1.3.0':
'@git.zone/tsdoc@1.3.1':
dependencies:
'@push.rocks/early': 4.0.4
'@push.rocks/npmextra': 5.0.23

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/cli',
version: '1.9.106',
version: '1.9.107',
description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
}

View File

@ -72,7 +72,9 @@ export const run = async (argvArg: any) => {
logger.log('info', `Writing changelog.md ...`);
let changelog = nextCommitObject.changelog;
changelog = changelog.replaceAll('{{nextVersion}}', (await commitInfo.getNextPlannedVersion()).versionString);
changelog = changelog.replaceAll('{{nextVersionMessage}}', commitString);
changelog = changelog.replaceAll('{{nextVersionScope}}', `${await answerBucket.getAnswerFor('commitType')}(${await answerBucket.getAnswerFor('commitScope')})`);
changelog = changelog.replaceAll('{{nextVersionMessage}}', nextCommitObject.recommendedNextVersionMessage);
changelog = changelog.replaceAll('{{nextVersionDetails}}', '- ' + nextCommitObject.recommendedNextVersionDetails.join('\n- '));
await plugins.smartfile.memory.toFs(changelog, plugins.path.join(paths.cwd, `changelog.md`));