create-daloy 0.1.22 → 0.1.23
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.
- package/bin/create-daloy.mjs +4 -4
- package/package.json +1 -1
- package/templates/bun-basic/package.json +1 -1
- package/templates/cloudflare-worker/package.json +1 -1
- package/templates/deno-basic/deno.json +2 -2
- package/templates/node-basic/package.json +1 -1
- package/templates/vercel-edge/package.json +1 -1
package/bin/create-daloy.mjs
CHANGED
|
@@ -44,10 +44,10 @@ const TEMPLATE_OPTIONS = [
|
|
|
44
44
|
];
|
|
45
45
|
|
|
46
46
|
const PACKAGE_MANAGER_OPTIONS = [
|
|
47
|
-
{ value: "pnpm", title: "pnpm", description: "Recommended
|
|
48
|
-
{ value: "npm", title: "npm", description: "Use the npm
|
|
49
|
-
{ value: "yarn", title: "Yarn", description: "
|
|
50
|
-
{ value: "bun", title: "Bun", description: "
|
|
47
|
+
{ value: "pnpm", title: "pnpm", description: "Recommended default with the hardened pnpm workspace settings" },
|
|
48
|
+
{ value: "npm", title: "npm", description: "Use the stock npm CLI with rewritten scripts and docs" },
|
|
49
|
+
{ value: "yarn", title: "Yarn", description: "Yarn workflow with rewritten scripts and lockfile-friendly installs" },
|
|
50
|
+
{ value: "bun", title: "Bun", description: "Bun package manager for fast installs; runtime templates stay Bun-native" },
|
|
51
51
|
];
|
|
52
52
|
|
|
53
53
|
const TEMPLATES = TEMPLATE_OPTIONS.map((option) => option.value);
|
package/package.json
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"gen:openapi": "deno run --allow-net --allow-env --allow-read --allow-write scripts/dump-openapi.ts"
|
|
9
9
|
},
|
|
10
10
|
"imports": {
|
|
11
|
-
"@daloyjs/core": "npm:@daloyjs/core@^0.5
|
|
12
|
-
"@daloyjs/core/": "npm:@daloyjs/core@^0.5
|
|
11
|
+
"@daloyjs/core": "npm:@daloyjs/core@^0.7.5",
|
|
12
|
+
"@daloyjs/core/": "npm:@daloyjs/core@^0.7.5/",
|
|
13
13
|
"zod": "npm:zod@^4.4.3"
|
|
14
14
|
},
|
|
15
15
|
"compilerOptions": {
|