Skip to content

Commit db876a2

Browse files
committed
Merge branch 'master' into make-v28
# Conflicts: # pnpm-lock.yaml # pnpm-workspace.yaml
2 parents cdab2ac + c8beac8 commit db876a2

9 files changed

Lines changed: 255 additions & 255 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

99
## Version 27
1010

11+
### v27.2.0
12+
13+
- Supporting TypeScript 6:
14+
- Supported `typescript` versions: `^5.1.3 || 6.0.2`.
15+
1116
### v27.1.0
1217

1318
- Introducing `ez.paginated()` helper for creating paginated endpoints:

express-zod-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"express": "^5.1.0",
5858
"express-fileupload": "^1.5.0",
5959
"http-errors": "^2.0.1",
60-
"typescript": "^5.1.3",
60+
"typescript": "^5.1.3 || ^6.0.2",
6161
"zod": "catalog:peer"
6262
},
6363
"peerDependenciesMeta": {

express-zod-api/tsdown.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "tsdown";
22
import manifest from "./package.json" with { type: "json" };
3-
import { humanReadableDtsPlugin } from "../tools/readableDts";
3+
import { fixDtsPlugin } from "../tools/fixDts";
44

55
export default defineConfig({
66
entry: "src/index.ts",
@@ -14,7 +14,7 @@ export default defineConfig({
1414
/** @since tsdown 0.21 it shakes the unused import */
1515
dts: `import "@express-zod-api/zod-plugin";`,
1616
},
17-
plugins: [humanReadableDtsPlugin()],
17+
plugins: [fixDtsPlugin()],
1818
define: {
1919
"process.env.TSDOWN_SELF": `"${manifest.name}"`, // used by localsID
2020
"process.env.TSDOWN_BUILD": `"v${manifest.version}"`, // @since v25.0.0 is pure ESM

migration/tsdown.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "tsdown";
22
import manifest from "./package.json" with { type: "json" };
3-
import { humanReadableDtsPlugin } from "../tools/readableDts";
3+
import { fixDtsPlugin } from "../tools/fixDts";
44

55
export default defineConfig({
66
entry: "index.ts",
@@ -10,7 +10,7 @@ export default defineConfig({
1010
skipNodeModulesBundle: true,
1111
},
1212
attw: { profile: "esm-only", level: "error" },
13-
plugins: [humanReadableDtsPlugin()],
13+
plugins: [fixDtsPlugin()],
1414
define: {
1515
"process.env.TSDOWN_VERSION": `"${manifest.version}"`, // used by ruleName
1616
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"globals": "^17.3.0",
2727
"husky": "^9.1.7",
2828
"prettier": "3.8.1",
29-
"tsdown": "^0.21.2",
29+
"tsdown": "^0.21.5",
3030
"typescript-eslint": "catalog:dev",
3131
"unrun": "^0.2.32",
3232
"vitest": "^4.0.16"

0 commit comments

Comments
 (0)