Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
58b189c1c7 | |||
b246894060 |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-18 - 2.1.1 - fix(build)
|
||||||
|
Fix tsbuild script to include missing flag
|
||||||
|
|
||||||
|
- Updated the build script in package.json to include --allowimplicitany flag.
|
||||||
|
|
||||||
## 2025-01-18 - 2.1.0 - feat(ci)
|
## 2025-01-18 - 2.1.0 - feat(ci)
|
||||||
Add GitHub Actions workflows for CI/CD
|
Add GitHub Actions workflows for CI/CD
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartcontext",
|
"name": "@push.rocks/smartcontext",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"description": "A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.",
|
"description": "A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./dist_ts/index.js"
|
".": "./dist_ts/index.js"
|
||||||
@ -10,7 +10,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(tstest test/)",
|
||||||
"build": "(tsbuild --web)",
|
"build": "(tsbuild --allowimplicitany --web)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartcontext',
|
name: '@push.rocks/smartcontext',
|
||||||
version: '2.1.0',
|
version: '2.1.1',
|
||||||
description: 'A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.'
|
description: 'A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user