@base44-preview/cli 0.1.6-pr.580.b42a66a → 0.1.6-pr.580.bdc9780
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/index.js +8 -6
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -256655,11 +256655,13 @@ async function runSiteBuild({ runTask: runTask2 }, { root, buildCommand, appId }
|
|
|
256655
256655
|
]
|
|
256656
256656
|
});
|
|
256657
256657
|
}
|
|
256658
|
-
await runTask2("Building site...", () =>
|
|
256659
|
-
|
|
256660
|
-
|
|
256661
|
-
|
|
256662
|
-
|
|
256658
|
+
await runTask2("Building site...", async () => {
|
|
256659
|
+
await execa({
|
|
256660
|
+
cwd: root,
|
|
256661
|
+
shell: true,
|
|
256662
|
+
env: { VITE_BASE44_APP_ID: appId }
|
|
256663
|
+
})`${buildCommand}`;
|
|
256664
|
+
}, {
|
|
256663
256665
|
successMessage: "Site built successfully",
|
|
256664
256666
|
errorMessage: "Build failed"
|
|
256665
256667
|
});
|
|
@@ -266797,4 +266799,4 @@ export {
|
|
|
266797
266799
|
CLIExitError
|
|
266798
266800
|
};
|
|
266799
266801
|
|
|
266800
|
-
//# debugId=
|
|
266802
|
+
//# debugId=4E24EC53FAF832E164756E2164756E21
|