Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
3f5a2f92d4 | |||
53eb47672c |
25
changelog.md
Normal file
25
changelog.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## {{nextVersion}} - {{nextVersionMessage}}
|
||||||
|
|
||||||
|
- Fix: General core updates
|
||||||
|
|
||||||
|
## 1.9.99
|
||||||
|
|
||||||
|
- Fix: General core updates
|
||||||
|
|
||||||
|
## 1.9.98
|
||||||
|
|
||||||
|
- Fix: General core updates
|
||||||
|
|
||||||
|
## 1.9.97
|
||||||
|
|
||||||
|
- Fix: General core updates
|
||||||
|
|
||||||
|
## 1.9.96
|
||||||
|
|
||||||
|
- Fix: General core updates
|
||||||
|
|
||||||
|
## 1.9.95
|
||||||
|
|
||||||
|
- Fix: General core updates
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/cli",
|
"name": "@git.zone/cli",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.9.99",
|
"version": "1.9.100",
|
||||||
"description": "A CLI toolbelt to streamline local development cycles by using various gitzone utilities.",
|
"description": "A CLI toolbelt to streamline local development cycles by using various gitzone utilities.",
|
||||||
"main": "dist_ts/index.ts",
|
"main": "dist_ts/index.ts",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* autocreated commitinfo by @pushrocks/commitinfo
|
* autocreated commitinfo by @push.rocks/commitinfo
|
||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/cli',
|
name: '@git.zone/cli',
|
||||||
version: '1.9.99',
|
version: '1.9.100',
|
||||||
description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
|
description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
|
||||||
}
|
}
|
||||||
|
@ -70,9 +70,9 @@ export const run = async (argvArg: any) => {
|
|||||||
await commitInfo.writeIntoPotentialDirs();
|
await commitInfo.writeIntoPotentialDirs();
|
||||||
|
|
||||||
logger.log('info', `Writing changelog.md ...`);
|
logger.log('info', `Writing changelog.md ...`);
|
||||||
const changelog = nextCommitObject.changelog;
|
let changelog = nextCommitObject.changelog;
|
||||||
changelog.replaceAll('{{nextVersion}}', (await commitInfo.getNextPlannedVersion()).versionString);
|
changelog = changelog.replaceAll('{{nextVersion}}', (await commitInfo.getNextPlannedVersion()).versionString);
|
||||||
changelog.replaceAll('{{nextVersionMessage}}', commitString);
|
changelog = changelog.replaceAll('{{nextVersionMessage}}', commitString);
|
||||||
|
|
||||||
await plugins.smartfile.memory.toFs(changelog, plugins.path.join(paths.cwd, `changelog.md`));
|
await plugins.smartfile.memory.toFs(changelog, plugins.path.join(paths.cwd, `changelog.md`));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user