Compare commits

...

6 Commits

4 changed files with 22 additions and 21 deletions

View File

@ -1,13 +1,23 @@
# Changelog
## 1.2.1
fix(core): Fixed usage of plugins in project context and readme generation
## [1.2.4] - 1.2.4
fix(logging): Refactor logger initialization to use commitinfo data
## 1.2.0
feat(aidocs_classes): Enhance changelog generation by supporting complete generation in the absence of previous changelog files
## [1.2.3]
fix(aidocs): Fix bug in AiDoc class causing undefined token handling
## 1.1.42
fix(aidoc_classes): Improve commit message generation by handling empty diffs and updating changelog instructions
## [1.2.2] - 2023-11-20
### Fixed
- Fix bug in AiDoc class causing undefined token handling
## 1.1.41
fix(aidoc_classes): Improve commit message generation by handling empty diffs and updating changelog instructions
## [1.2.1] - 2023-11-10
### Fixed
- Fixed usage of plugins in project context and readme generation
## [1.2.0] - 2023-11-01
### Added
- Enhance changelog generation by supporting complete generation in the absence of previous changelog files
## [1.1.42] - 2023-10-30
### Fixed
- Improve commit message generation by handling empty diffs and updating changelog instructions

View File

@ -1,6 +1,6 @@
{
"name": "@git.zone/tsdoc",
"version": "1.2.1",
"version": "1.2.4",
"private": false,
"description": "An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.",
"type": "module",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsdoc',
version: '1.2.1',
version: '1.2.4',
description: 'An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.'
}

View File

@ -1,15 +1,6 @@
import { commitinfo } from './00_commitinfo_data.js';
import * as plugins from './plugins.js';
export const logger = new plugins.smartlog.Smartlog({
logContext: {
company: 'Some Company',
companyunit: 'Some CompanyUnit',
containerName: 'Some Containername',
environment: 'local',
runtime: 'node',
zone: 'gitzone',
},
minimumLogLevel: 'silly',
});
export const logger = plugins.smartlog.Smartlog.createForCommitinfo(commitinfo);
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());