@base44-preview/cli 0.1.8-pr.584.3c3748e → 0.1.8-pr.584.c8b5c9f
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 +2 -3
- package/dist/cli/index.js.map +17 -17
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -255480,9 +255480,8 @@ async function deployStaticSite(options) {
|
|
|
255480
255480
|
if (created.assetUploads && created.assetUploads.type !== "s3") {
|
|
255481
255481
|
throw new ApiError(`The server answered a static-site deploy with the "${created.assetUploads.type}" upload target.`);
|
|
255482
255482
|
}
|
|
255483
|
-
const totalAssets = Object.keys(assets.manifest).length;
|
|
255484
255483
|
progress?.onAssets?.({
|
|
255485
|
-
totalAssets,
|
|
255484
|
+
totalAssets: Object.keys(assets.manifest).length,
|
|
255486
255485
|
newAssets: created.assetUploads?.uploads.length ?? 0
|
|
255487
255486
|
});
|
|
255488
255487
|
if (created.assetUploads) {
|
|
@@ -268403,4 +268402,4 @@ export {
|
|
|
268403
268402
|
CLIExitError
|
|
268404
268403
|
};
|
|
268405
268404
|
|
|
268406
|
-
//# debugId=
|
|
268405
|
+
//# debugId=4AED7703132F8F3A64756E2164756E21
|