Skip to content

Commit 444bb60

Browse files
authored
Merge pull request #196 from trojs/feature/20251031
Oktober 2025 updates
2 parents ee0bab1 + 89d2256 commit 444bb60

23 files changed

+751
-102
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [20.x, 21.x, 22.x, 23.x]
11+
node-version: [20.x, 22.x, 24.x, 25.x]
1212

1313
steps:
1414
- uses: actions/checkout@v5

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [20.x, 21.x, 22.x, 23.x, 24.x]
13+
node-version: [20.x, 22.x, 24.x, 25.x]
1414

1515
steps:
1616
- uses: actions/checkout@v5

deno.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@trojs/error",
3+
"version": "4.4.0",
4+
"license": "MIT",
5+
"exports": "./src/index.js",
6+
"compilerOptions": {
7+
"lib": [
8+
"esnext",
9+
"dom",
10+
"dom.iterable",
11+
"deno.window"
12+
]
13+
},
14+
"tasks": {
15+
"check": "deno check src/index.js"
16+
}
17+
}

jsconfig.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
11
{
22
"compilerOptions": {
3+
"allowJs": true,
34
"checkJs": true,
45
"target": "ESNext",
56
"module": "NodeNext",
67
"moduleResolution": "nodenext",
8+
"lib": [
9+
"ESNext"
10+
],
711
"rootDirs": [
8-
"src"
12+
"src",
13+
"types"
14+
],
15+
"baseUrl": ".",
16+
"resolveJsonModule": true,
17+
"types": [
18+
"node"
919
],
10-
"resolveJsonModule": true
20+
"skipLibCheck": true,
21+
"esModuleInterop": true,
22+
"noEmit": true
1123
},
24+
"include": [
25+
"src/**/*",
26+
"types/**/*"
27+
],
1228
"exclude": [
1329
"node_modules",
1430
"**/node_modules/*"

jsr.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "@trojs/error",
3+
"version": "4.4.0",
4+
"license": "MIT",
5+
"exports": "./src/index.js"
6+
}

0 commit comments

Comments
 (0)