Compare commits

..

6 Commits

Author SHA1 Message Date
152b436096 1.9.104
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-06-23 17:43:27 +02:00
99f88236cb fix(changelog): Fix changelog to remove placeholder entries and adjust formatting 2024-06-23 17:43:26 +02:00
af0cb494fd 1.9.103
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-06-23 17:41:51 +02:00
dc43deece9 fix(logging): Optimize logger instantiation and configuration. 2024-06-23 17:41:51 +02:00
2361bfcad4 1.9.102
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-06-23 17:13:41 +02:00
bb1e0a5679 fix(metadata): Ensure accurate project metadata in package.json 2024-06-23 17:13:40 +02:00
4 changed files with 15 additions and 13 deletions

View File

@ -1,5 +1,16 @@
# Changelog
## 1.9.104 - fix(changelog): Fix changelog to remove placeholder entries and adjust formatting
- Placeholder entry for the next version changes.
## 1.9.103 - fix(logging): Optimize logger instantiation and configuration.
## 1.9.102 - fix(metadata): Ensure accurate project metadata in package.json
- Placeholder entry for the next version changes.
## 1.9.101 - fix(dependencies): Updated @git.zone/tsdoc dependency version to ^1.2.2 in package.json and pnpm-lock.yaml
- Fix: General core updates

View File

@ -1,7 +1,7 @@
{
"name": "@git.zone/cli",
"private": false,
"version": "1.9.101",
"version": "1.9.104",
"description": "A CLI toolbelt to streamline local development cycles by using various gitzone utilities.",
"main": "dist_ts/index.ts",
"typings": "dist_ts/index.d.ts",

View File

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

View File

@ -1,15 +1,6 @@
import { commitinfo } from '@push.rocks/commitinfo';
import * as plugins from './plugins.js';
export const logger = new plugins.smartlog.Smartlog({
minimumLogLevel: 'silly',
logContext: {
company: 'Task Venture Capital GmbH',
companyunit: 'Lossless Cloud',
containerName: 'local',
environment: 'local',
runtime: 'node',
zone: 'gitzone',
},
});
export const logger = plugins.smartlog.Smartlog.createForCommitinfo(commitinfo);
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());