create-windy 0.2.4 → 0.2.5
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/cli.js +4 -3
- package/package.json +1 -1
- package/template/.windy-template.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -3833,7 +3833,8 @@ var recipes = [
|
|
|
3833
3833
|
{ id: "starter-0.2.0-to-0.2.1", from: "0.2.0", to: "0.2.1" },
|
|
3834
3834
|
{ id: "starter-0.2.1-to-0.2.2", from: "0.2.1", to: "0.2.2" },
|
|
3835
3835
|
{ id: "starter-0.2.2-to-0.2.3", from: "0.2.2", to: "0.2.3" },
|
|
3836
|
-
{ id: "starter-0.2.3-to-0.2.4", from: "0.2.3", to: "0.2.4" }
|
|
3836
|
+
{ id: "starter-0.2.3-to-0.2.4", from: "0.2.3", to: "0.2.4" },
|
|
3837
|
+
{ id: "starter-0.2.4-to-0.2.5", from: "0.2.4", to: "0.2.5" }
|
|
3837
3838
|
];
|
|
3838
3839
|
function resolveRecipeChain(sourceVersion, targetVersion) {
|
|
3839
3840
|
if (sourceVersion === targetVersion)
|
|
@@ -4174,8 +4175,8 @@ class DefaultStarterUpdater {
|
|
|
4174
4175
|
async verify(result) {
|
|
4175
4176
|
const steps = [];
|
|
4176
4177
|
try {
|
|
4177
|
-
await this.#execute("bun", ["install", "--
|
|
4178
|
-
steps.push({ name: "bun install --
|
|
4178
|
+
await this.#execute("bun", ["install", "--force"], result.plan.projectDirectory);
|
|
4179
|
+
steps.push({ name: "bun install --force", status: "passed" });
|
|
4179
4180
|
const packageJson = JSON.parse(await readFile12(join13(result.plan.projectDirectory, "package.json"), "utf8"));
|
|
4180
4181
|
for (const name of ["lint", "typecheck", "test", "build"]) {
|
|
4181
4182
|
if (!packageJson.scripts?.[name]) {
|
package/package.json
CHANGED