@base44-preview/cli 0.0.49-pr.443.0146fb3 → 0.0.49-pr.443.8fa30f2
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 +3 -3
- package/dist/cli/index.js.map +4 -4
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -252887,7 +252887,7 @@ var stringify = (item) => {
|
|
|
252887
252887
|
return item.toString();
|
|
252888
252888
|
}
|
|
252889
252889
|
try {
|
|
252890
|
-
return JSON.stringify(item) ?? String(item);
|
|
252890
|
+
return JSON.stringify(item, null, 2) ?? String(item);
|
|
252891
252891
|
} catch {
|
|
252892
252892
|
return String(item);
|
|
252893
252893
|
}
|
|
@@ -255526,7 +255526,7 @@ class WatchBase44 extends EventEmitter4 {
|
|
|
255526
255526
|
this.emit("change", name2, relative6(targetPath, path19));
|
|
255527
255527
|
}, WATCH_DEBOUNCE_MS));
|
|
255528
255528
|
watcher.on("error", (err) => {
|
|
255529
|
-
this.logger.error(`Watch handler failed for ${targetPath}`, err
|
|
255529
|
+
this.logger.error(`Watch handler failed for ${targetPath}`, err);
|
|
255530
255530
|
});
|
|
255531
255531
|
return watcher;
|
|
255532
255532
|
}
|
|
@@ -260142,4 +260142,4 @@ export {
|
|
|
260142
260142
|
CLIExitError
|
|
260143
260143
|
};
|
|
260144
260144
|
|
|
260145
|
-
//# debugId=
|
|
260145
|
+
//# debugId=8E14131475ABC95564756E2164756E21
|