appfunnel 0.14.0 → 0.15.0
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -486,7 +486,7 @@ ${itemsStr},
|
|
|
486
486
|
}
|
|
487
487
|
writeFileSync2(configPath, config);
|
|
488
488
|
}
|
|
489
|
-
const sdkVersion = `^${"0.
|
|
489
|
+
const sdkVersion = `^${"0.15.0"}`;
|
|
490
490
|
writeFileSync2(
|
|
491
491
|
join2(dir, "package.json"),
|
|
492
492
|
JSON.stringify(
|
|
@@ -732,7 +732,7 @@ var init_config = __esm({
|
|
|
732
732
|
import { readFileSync as readFileSync4 } from "fs";
|
|
733
733
|
import { join as join4 } from "path";
|
|
734
734
|
function checkVersionCompatibility(cwd) {
|
|
735
|
-
const cliVersion = "0.
|
|
735
|
+
const cliVersion = "0.15.0";
|
|
736
736
|
const sdkVersion = getSdkVersion(cwd);
|
|
737
737
|
const [cliMajor, cliMinor] = cliVersion.split(".").map(Number);
|
|
738
738
|
const [sdkMajor, sdkMinor] = sdkVersion.split(".").map(Number);
|
|
@@ -2351,7 +2351,7 @@ init_errors();
|
|
|
2351
2351
|
import { Command } from "commander";
|
|
2352
2352
|
import pc10 from "picocolors";
|
|
2353
2353
|
var program = new Command();
|
|
2354
|
-
program.name("appfunnel").description("Build and publish headless AppFunnel projects").version("0.
|
|
2354
|
+
program.name("appfunnel").description("Build and publish headless AppFunnel projects").version("0.15.0");
|
|
2355
2355
|
program.command("init").argument("[name]", "Project directory name").description("Create a new AppFunnel project").action(async (name) => {
|
|
2356
2356
|
const { initCommand: initCommand2 } = await Promise.resolve().then(() => (init_init(), init_exports));
|
|
2357
2357
|
await initCommand2(name);
|