appfunnel 0.8.0 → 0.9.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
|
@@ -480,7 +480,7 @@ ${itemsStr},
|
|
|
480
480
|
}
|
|
481
481
|
writeFileSync2(configPath, config);
|
|
482
482
|
}
|
|
483
|
-
const sdkVersion = `^${"0.
|
|
483
|
+
const sdkVersion = `^${"0.9.0"}`;
|
|
484
484
|
writeFileSync2(
|
|
485
485
|
join2(dir, "package.json"),
|
|
486
486
|
JSON.stringify(
|
|
@@ -726,7 +726,7 @@ var init_config = __esm({
|
|
|
726
726
|
import { readFileSync as readFileSync4 } from "fs";
|
|
727
727
|
import { join as join4 } from "path";
|
|
728
728
|
function checkVersionCompatibility(cwd) {
|
|
729
|
-
const cliVersion = "0.
|
|
729
|
+
const cliVersion = "0.9.0";
|
|
730
730
|
const sdkVersion = getSdkVersion(cwd);
|
|
731
731
|
const [cliMajor, cliMinor] = cliVersion.split(".").map(Number);
|
|
732
732
|
const [sdkMajor, sdkMinor] = sdkVersion.split(".").map(Number);
|
|
@@ -1865,7 +1865,7 @@ init_errors();
|
|
|
1865
1865
|
import { Command } from "commander";
|
|
1866
1866
|
import pc9 from "picocolors";
|
|
1867
1867
|
var program = new Command();
|
|
1868
|
-
program.name("appfunnel").description("Build and publish headless AppFunnel projects").version("0.
|
|
1868
|
+
program.name("appfunnel").description("Build and publish headless AppFunnel projects").version("0.9.0");
|
|
1869
1869
|
program.command("init").argument("[name]", "Project directory name").description("Create a new AppFunnel project").action(async (name) => {
|
|
1870
1870
|
const { initCommand: initCommand2 } = await Promise.resolve().then(() => (init_init(), init_exports));
|
|
1871
1871
|
await initCommand2(name);
|