Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
45020805cb | |||
c9e384567e | |||
152b436096 | |||
99f88236cb | |||
af0cb494fd | |||
dc43deece9 |
20
changelog.md
20
changelog.md
@ -1,16 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.9.102 - fix(metadata): Ensure accurate project metadata in package.json
|
## 1.9.105 - fix(changelog): Remove placeholder entries and adjust formatting in changelog.
|
||||||
|
|
||||||
- Placeholder entry for the next version changes.
|
## 1.9.104 - Fix changelog and format adjustments
|
||||||
|
- Fix changelog to remove placeholder entries and adjust formatting
|
||||||
|
|
||||||
|
## 1.9.103 - Logger Optimization
|
||||||
|
- Optimize logger instantiation and configuration
|
||||||
|
|
||||||
|
## 1.9.102 - Metadata Accuracy
|
||||||
|
- Ensure accurate project metadata in package.json
|
||||||
|
|
||||||
|
## 1.9.101 - Dependency Update
|
||||||
|
- Updated @git.zone/tsdoc dependency version to ^1.2.2 in package.json and pnpm-lock.yaml
|
||||||
|
|
||||||
## 1.9.101 - fix(dependencies): 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: General core updates
|
|
||||||
|
|
||||||
## 1.9.100
|
|
||||||
|
|
||||||
- Fix: Fix variable reassignment issue in changelog writing step
|
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/cli",
|
"name": "@git.zone/cli",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.9.102",
|
"version": "1.9.105",
|
||||||
"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",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/cli',
|
name: '@git.zone/cli',
|
||||||
version: '1.9.102',
|
version: '1.9.105',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,6 @@
|
|||||||
|
import { commitinfo } from '@push.rocks/commitinfo';
|
||||||
import * as plugins from './plugins.js';
|
import * as plugins from './plugins.js';
|
||||||
|
|
||||||
export const logger = new plugins.smartlog.Smartlog({
|
export const logger = plugins.smartlog.Smartlog.createForCommitinfo(commitinfo);
|
||||||
minimumLogLevel: 'silly',
|
|
||||||
logContext: {
|
|
||||||
company: 'Task Venture Capital GmbH',
|
|
||||||
companyunit: 'Lossless Cloud',
|
|
||||||
containerName: 'local',
|
|
||||||
environment: 'local',
|
|
||||||
runtime: 'node',
|
|
||||||
zone: 'gitzone',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
||||||
|
Reference in New Issue
Block a user