Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 18
registry-url: https://registry.npmjs.org/
node-version: current
registry-url: https://registry.npmjs.org
- run: bash .ci/build.sh
- run: bash .ci/test.sh
- run: bash .ci/publish.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 18
node-version: current
- run: bash .ci/build.sh
- run: bash .ci/test.sh
1,434 changes: 839 additions & 595 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "2.0.1",
"@js-soft/license-check": "1.0.9",
"@js-soft/eslint-config-ts": "2.0.4",
"@js-soft/license-check": "1.0.10",
"@types/jest": "^30.0.0",
"@types/node": "^22.12.0",
"eslint": "^9.31.0",
"jest": "^30.0.4",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}
2 changes: 1 addition & 1 deletion packages/abstractions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/logging-abstractions",
"version": "1.0.1",
"version": "1.0.2",
"description": "Web implementation of the '@js-soft/logging-abstractions' library",
"homepage": "https://github.com/js-soft/ts-logging#readme",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/node-logger",
"version": "1.2.0",
"version": "1.2.1",
"description": "NodeJs implementation of the '@js-soft/logging-abstractions' library",
"homepage": "https://github.com/js-soft/ts-logging#readme",
"repository": {
Expand All @@ -26,7 +26,7 @@
"testTimeout": 60000
},
"dependencies": {
"@js-soft/logging-abstractions": "1.0.1",
"@js-soft/logging-abstractions": "1.0.2",
"correlation-id": "^5.2.0",
"json-stringify-safe": "^5.0.1",
"log4js": "^6.9.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/simple/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/simple-logger",
"version": "1.0.5",
"version": "1.0.6",
"description": "Simple implementation of the '@js-soft/logging-abstractions' library",
"homepage": "https://github.com/js-soft/ts-logging#readme",
"repository": {
Expand All @@ -19,7 +19,7 @@
"license-check": "license-check"
},
"dependencies": {
"@js-soft/logging-abstractions": "1.0.1",
"@js-soft/logging-abstractions": "1.0.2",
"json-stringify-safe": "^5.0.1",
"typescript-logging": "^2.2.0",
"typescript-logging-log4ts-style": "^2.2.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/web-logger",
"version": "1.0.4",
"version": "1.0.5",
"description": "Web implementation of the '@js-soft/logging-abstractions' library",
"homepage": "https://github.com/js-soft/ts-logging#readme",
"repository": {
Expand All @@ -19,7 +19,7 @@
"license-check": "license-check"
},
"dependencies": {
"@js-soft/logging-abstractions": "1.0.1",
"@js-soft/logging-abstractions": "1.0.2",
"js-logger": "1.6.1",
"json-stringify-safe": "^5.0.1"
},
Expand Down