create-windy 0.2.31 → 0.2.32
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 +3 -2
- package/package.json +1 -1
- package/template/.windy-template.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1114,7 +1114,7 @@ function rewriteCustomerDockerfile(source) {
|
|
|
1114
1114
|
return !supplierWorkspaceCopies.includes(line) && !supplierWorkspacePaths.some((path) => line.includes(path)) && !line.includes("deploy/production/server-entrypoint.sh");
|
|
1115
1115
|
});
|
|
1116
1116
|
return lines.join(`
|
|
1117
|
-
`)
|
|
1117
|
+
`);
|
|
1118
1118
|
}
|
|
1119
1119
|
|
|
1120
1120
|
// src/code-quality.ts
|
|
@@ -4361,7 +4361,8 @@ var recipes = [
|
|
|
4361
4361
|
{ id: "starter-0.2.27-to-0.2.28", from: "0.2.27", to: "0.2.28" },
|
|
4362
4362
|
{ id: "starter-0.2.28-to-0.2.29", from: "0.2.28", to: "0.2.29" },
|
|
4363
4363
|
{ id: "starter-0.2.29-to-0.2.30", from: "0.2.29", to: "0.2.30" },
|
|
4364
|
-
{ id: "starter-0.2.30-to-0.2.31", from: "0.2.30", to: "0.2.31" }
|
|
4364
|
+
{ id: "starter-0.2.30-to-0.2.31", from: "0.2.30", to: "0.2.31" },
|
|
4365
|
+
{ id: "starter-0.2.31-to-0.2.32", from: "0.2.31", to: "0.2.32" }
|
|
4365
4366
|
];
|
|
4366
4367
|
function resolveRecipeChain(sourceVersion, targetVersion) {
|
|
4367
4368
|
if (sourceVersion === targetVersion)
|
package/package.json
CHANGED