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
2 changes: 1 addition & 1 deletion packages/cache-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@
"cache-manager-redis-yet": "^5.1.5",
"cacheable": "workspace:^",
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Fix TS6-deprecated config before bumping compiler

With this TypeScript 6 bump, the package tsconfig for this package is no longer valid: tsc -p packages/cache-manager/tsconfig.json --noEmit reports TS5107 for moduleResolution: "node" and TS5101 for baseUrl unless ignoreDeprecations: "6.0" is set. The same deprecated options are still present in cacheable, flat-cache, memory, net, and node-cache, so any TS6 declaration/type-check path that reads those package configs will fail before it reaches source type checking.

Useful? React with 👍 / 👎.

}
}
2 changes: 1 addition & 1 deletion packages/cacheable-request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
"express": "^5.2.1",
"pify": "^6.1.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
3 changes: 3 additions & 0 deletions packages/cacheable-request/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src"
},
"include": ["src/**/*"]
}

2 changes: 1 addition & 1 deletion packages/cacheable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@qified/redis": "^0.10.1",
"lru-cache": "^11.3.6",
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"dependencies": {
"@cacheable/memory": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/file-entry-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"devDependencies": {
"pino": "^10.3.1",
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add explicit Node types for TS6 builds

TypeScript 6 now defaults compilerOptions.types to an empty list, but this package's tsconfig leaves types unset while src/index.ts imports node:* modules and uses process/NodeJS.ErrnoException. Even with @types/node visible in the workspace, TS6 will not load those declarations automatically, so declaration builds fail with TS2591/TS2503 until the config explicitly includes Node types; @cacheable/net has the same pattern for Buffer/BufferEncoding.

Useful? React with 👍 / 👎.

},
"dependencies": {
"flat-cache": "workspace:^"
Expand Down
2 changes: 1 addition & 1 deletion packages/flat-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"devDependencies": {
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"dependencies": {
"cacheable": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/memory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"dependencies": {
"@cacheable/utils": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/net/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"devDependencies": {
"@types/http-cache-semantics": "^4.2.0",
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"dependencies": {
"@cacheable/utils": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/node-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"devDependencies": {
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"dependencies": {
"@cacheable/utils": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"devDependencies": {
"tsdown": "^0.22.3",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
},
"keywords": [
"cacheable",
Expand Down
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading