@lumerahq/cli 0.18.4 → 0.18.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.
|
@@ -188,7 +188,8 @@ async function dev(options) {
|
|
|
188
188
|
stdio: "inherit",
|
|
189
189
|
env: {
|
|
190
190
|
...filteredEnv,
|
|
191
|
-
VITE_PARENT_ORIGIN: "https://app.lumerahq.com"
|
|
191
|
+
VITE_PARENT_ORIGIN: "https://app.lumerahq.com",
|
|
192
|
+
VITE_LUMERA_PROJECT: appName
|
|
192
193
|
}
|
|
193
194
|
});
|
|
194
195
|
setTimeout(() => {
|
package/dist/index.js
CHANGED
|
@@ -216,29 +216,29 @@ async function main() {
|
|
|
216
216
|
switch (command) {
|
|
217
217
|
// Resource commands
|
|
218
218
|
case "plan":
|
|
219
|
-
await import("./resources-
|
|
219
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.plan(args.slice(1)));
|
|
220
220
|
break;
|
|
221
221
|
case "apply":
|
|
222
|
-
await import("./resources-
|
|
222
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.apply(args.slice(1)));
|
|
223
223
|
break;
|
|
224
224
|
case "pull":
|
|
225
|
-
await import("./resources-
|
|
225
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.pull(args.slice(1)));
|
|
226
226
|
break;
|
|
227
227
|
case "destroy":
|
|
228
|
-
await import("./resources-
|
|
228
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.destroy(args.slice(1)));
|
|
229
229
|
break;
|
|
230
230
|
case "list":
|
|
231
|
-
await import("./resources-
|
|
231
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.list(args.slice(1)));
|
|
232
232
|
break;
|
|
233
233
|
case "show":
|
|
234
|
-
await import("./resources-
|
|
234
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.show(args.slice(1)));
|
|
235
235
|
break;
|
|
236
236
|
case "diff":
|
|
237
|
-
await import("./resources-
|
|
237
|
+
await import("./resources-LRWBA2RN.js").then((m) => m.diff(args.slice(1)));
|
|
238
238
|
break;
|
|
239
239
|
// Development
|
|
240
240
|
case "dev":
|
|
241
|
-
await import("./dev-
|
|
241
|
+
await import("./dev-THJOTVJF.js").then((m) => m.dev(args.slice(1)));
|
|
242
242
|
break;
|
|
243
243
|
case "run":
|
|
244
244
|
await import("./run-6ULEFGHJ.js").then((m) => m.run(args.slice(1)));
|