@lunora/cli 1.0.0-alpha.81 → 1.0.0-alpha.83
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.d.mts
CHANGED
|
@@ -806,7 +806,7 @@ interface OfferDeps {
|
|
|
806
806
|
* single progress line whose label changes per feature, instead of one spinner
|
|
807
807
|
* per item. Non-interactive: prints how to add them later and changes nothing.
|
|
808
808
|
*/
|
|
809
|
-
type Template = "analog" | "astro" | "next" | "nuxt" | "react-router" | "standalone" | "sveltekit" | "tanstack-start-react" | "tanstack-start-solid";
|
|
809
|
+
type Template = "analog" | "astro" | "expo" | "next" | "nuxt" | "react-router" | "standalone" | "sveltekit" | "tanstack-start-react" | "tanstack-start-solid";
|
|
810
810
|
interface InitCommandOptions {
|
|
811
811
|
/**
|
|
812
812
|
* Add features non-interactively after scaffolding (the `--add` flag): a
|
package/dist/index.d.ts
CHANGED
|
@@ -806,7 +806,7 @@ interface OfferDeps {
|
|
|
806
806
|
* single progress line whose label changes per feature, instead of one spinner
|
|
807
807
|
* per item. Non-interactive: prints how to add them later and changes nothing.
|
|
808
808
|
*/
|
|
809
|
-
type Template = "analog" | "astro" | "next" | "nuxt" | "react-router" | "standalone" | "sveltekit" | "tanstack-start-react" | "tanstack-start-solid";
|
|
809
|
+
type Template = "analog" | "astro" | "expo" | "next" | "nuxt" | "react-router" | "standalone" | "sveltekit" | "tanstack-start-react" | "tanstack-start-solid";
|
|
810
810
|
interface InitCommandOptions {
|
|
811
811
|
/**
|
|
812
812
|
* Add features non-interactively after scaffolding (the `--add` flag): a
|
|
@@ -2393,6 +2393,7 @@ const FRAMEWORK_CHOICES = [
|
|
|
2393
2393
|
{ description: "AnalogJS (Angular) — single-worker, Lunora mounted in Nitro", label: "Analog", value: "analog" },
|
|
2394
2394
|
{ description: "Nuxt (Vue) — single-worker, Lunora mounted in Nitro", label: "Nuxt", value: "nuxt" },
|
|
2395
2395
|
{ description: "SvelteKit + a standalone Lunora worker", label: "SvelteKit", value: "sveltekit" },
|
|
2396
|
+
{ description: "React Native (Expo) — an iOS/Android/web app + a Lunora worker backend", label: "React Native · Expo", value: "expo" },
|
|
2396
2397
|
{ description: "Worker only — no frontend", label: "Standalone", value: "standalone" }
|
|
2397
2398
|
];
|
|
2398
2399
|
const OVERLAY_VALUES = Object.keys(ADAPTERS).join("|");
|
|
@@ -2560,7 +2561,7 @@ const runInitCommand = async (options) => {
|
|
|
2560
2561
|
scaffoldCiPipeline(options, result, cwd);
|
|
2561
2562
|
return result;
|
|
2562
2563
|
};
|
|
2563
|
-
const isTemplate = (value) => value === "analog" || value === "astro" || value === "next" || value === "nuxt" || value === "react-router" || value === "standalone" || value === "sveltekit" || value === "tanstack-start-react" || value === "tanstack-start-solid";
|
|
2564
|
+
const isTemplate = (value) => value === "analog" || value === "astro" || value === "expo" || value === "next" || value === "nuxt" || value === "react-router" || value === "standalone" || value === "sveltekit" || value === "tanstack-start-react" || value === "tanstack-start-solid";
|
|
2564
2565
|
const resolveCiProvider = (raw, logger) => {
|
|
2565
2566
|
if (raw === void 0) {
|
|
2566
2567
|
return void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunora/cli",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.83",
|
|
4
4
|
"description": "The Lunora CLI: init, dev, deploy, codegen, run, reset, and migrate commands",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@bomb.sh/tab": "0.0.18",
|
|
55
|
-
"@lunora/codegen": "1.0.0-alpha.
|
|
56
|
-
"@lunora/config": "1.0.0-alpha.
|
|
57
|
-
"@lunora/container": "1.0.0-alpha.
|
|
55
|
+
"@lunora/codegen": "1.0.0-alpha.41",
|
|
56
|
+
"@lunora/config": "1.0.0-alpha.64",
|
|
57
|
+
"@lunora/container": "1.0.0-alpha.10",
|
|
58
58
|
"@lunora/d1": "1.0.0-alpha.26",
|
|
59
59
|
"@lunora/errors": "1.0.0-alpha.4",
|
|
60
60
|
"@lunora/seed": "1.0.0-alpha.22",
|