@web-ts-toolkit/express-runtime 0.16.0 → 0.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/cli.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -328,7 +328,7 @@ Omitting `<command>` defaults to `dev` for backward compatibility.
328
328
  | `--out-dir <path>` | Output directory (default: `dist`) |
329
329
  | `--out-name <name>` | Output filename without extension (default: `handler`) |
330
330
  | `--format <cjs\|esm>` | Output format (default: `cjs`) |
331
- | `--target <target>` | Compilation target (default: `node20`) |
331
+ | `--target <target>` | Compilation target (default: `node22`) |
332
332
  | `--external <pkg>` | Mark package as external (repeatable; `express` is always external) |
333
333
  | `--no-clean` | Don't clean the output directory before building |
334
334
 
package/cli.js CHANGED
@@ -235,7 +235,7 @@ Build options:
235
235
  --out-dir <path> Output directory (default: dist)
236
236
  --out-name <name> Output filename without extension (default: handler)
237
237
  --format <cjs|esm> Output format (default: cjs)
238
- --target <target> Compilation target (default: node20)
238
+ --target <target> Compilation target (default: node22)
239
239
  --external <pkg> Mark package as external (repeatable; express always external)
240
240
  --no-clean Don't clean the output directory before building
241
241
 
@@ -445,7 +445,7 @@ function parseBuildArgs(argv) {
445
445
  outDir: "dist",
446
446
  outName: "handler",
447
447
  format: "cjs",
448
- target: "node20",
448
+ target: "node22",
449
449
  external,
450
450
  clean: true
451
451
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@web-ts-toolkit/express-runtime",
3
3
  "description": "Express app factory plus serverless handler and local dev server helpers",
4
4
  "homepage": "https://web-ts-toolkit.pages.dev/docs/packages/express-runtime",
5
- "version": "0.16.0",
5
+ "version": "0.16.2",
6
6
  "sideEffects": false,
7
7
  "keywords": [
8
8
  "express",