@kozojs/cli 0.1.13 → 0.1.14
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/lib/index.js +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -452,7 +452,7 @@ async function scaffoldCompleteTemplate(projectDir, projectName, kozoCoreDep, ru
|
|
|
452
452
|
},
|
|
453
453
|
dependencies: {
|
|
454
454
|
"@kozojs/core": kozoCoreDep,
|
|
455
|
-
...auth && { "@kozojs/auth": kozoCoreDep },
|
|
455
|
+
...auth && { "@kozojs/auth": kozoCoreDep === "workspace:*" ? "workspace:*" : "^0.1.0" },
|
|
456
456
|
"@hono/node-server": "^1.13.0",
|
|
457
457
|
hono: "^4.6.0",
|
|
458
458
|
zod: "^3.23.0",
|
|
@@ -1460,7 +1460,7 @@ ${auth ? "JWT_SECRET=change-me-to-a-random-secret-at-least-32-chars\n" : ""}`;
|
|
|
1460
1460
|
},
|
|
1461
1461
|
dependencies: {
|
|
1462
1462
|
"@kozojs/core": kozoCoreDep,
|
|
1463
|
-
...auth && { "@kozojs/auth": kozoCoreDep },
|
|
1463
|
+
...auth && { "@kozojs/auth": kozoCoreDep === "workspace:*" ? "workspace:*" : "^0.1.0" },
|
|
1464
1464
|
hono: "^4.6.0",
|
|
1465
1465
|
zod: "^3.23.0",
|
|
1466
1466
|
dotenv: "^16.4.0",
|