@base44-preview/cli 0.1.6-pr.580.7b51e7b → 0.1.6-pr.580.7e9bda9
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 +7 -3
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -247293,7 +247293,9 @@ async function deploySite(siteOutputDir) {
|
|
|
247293
247293
|
if (!await pathExists(siteOutputDir)) {
|
|
247294
247294
|
throw new InvalidInputError(`Output directory does not exist: ${siteOutputDir}. Make sure to build your project first.`, {
|
|
247295
247295
|
hints: [
|
|
247296
|
-
{
|
|
247296
|
+
{
|
|
247297
|
+
message: "Run 'base44 build' first (it injects your app id; a bare 'npm run build' does not)"
|
|
247298
|
+
}
|
|
247297
247299
|
]
|
|
247298
247300
|
});
|
|
247299
247301
|
}
|
|
@@ -247301,7 +247303,9 @@ async function deploySite(siteOutputDir) {
|
|
|
247301
247303
|
if (filePaths.length === 0) {
|
|
247302
247304
|
throw new ConfigInvalidError(`No files found in output directory: ${siteOutputDir}. Make sure to build your project first.`, siteOutputDir, {
|
|
247303
247305
|
hints: [
|
|
247304
|
-
{
|
|
247306
|
+
{
|
|
247307
|
+
message: "Run 'base44 build' first (it injects your app id; a bare 'npm run build' does not)"
|
|
247308
|
+
}
|
|
247305
247309
|
]
|
|
247306
247310
|
});
|
|
247307
247311
|
}
|
|
@@ -266574,4 +266578,4 @@ export {
|
|
|
266574
266578
|
CLIExitError
|
|
266575
266579
|
};
|
|
266576
266580
|
|
|
266577
|
-
//# debugId=
|
|
266581
|
+
//# debugId=5492F733C27A685564756E2164756E21
|