@adbayb/stack 2.40.0-next-44975a1 → 2.40.0-next-3f903eb
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -442,7 +442,7 @@ const PRESERVE_FILES = ["node_modules"];
|
|
|
442
442
|
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region package.json
|
|
445
|
-
var version = "2.40.0-next-
|
|
445
|
+
var version = "2.40.0-next-3f903eb";
|
|
446
446
|
|
|
447
447
|
//#endregion
|
|
448
448
|
//#region src/commands/create.ts
|
|
@@ -493,7 +493,7 @@ const createCreateCommand = (program) => {
|
|
|
493
493
|
const projectName = slugify(inputName);
|
|
494
494
|
return {
|
|
495
495
|
licenseYear: (/* @__PURE__ */ new Date()).getFullYear().toString(),
|
|
496
|
-
nodeVersion: nodeVersion.replace("v", "")
|
|
496
|
+
nodeVersion: `^${Number(nodeVersion.replace("v", "").split(".")[0])}.0.0`,
|
|
497
497
|
pnpmVersion: String(pnpmVersion),
|
|
498
498
|
projectDescription: toCapitalLetter(inputDescription),
|
|
499
499
|
projectName,
|