@tscircuit/cli 0.1.283 → 0.1.284
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/main.js +3 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -87533,7 +87533,7 @@ var getGlobalDepsInstallCommand = (packageManager, deps) => {
|
|
|
87533
87533
|
import { execSync as execSync2 } from "node:child_process";
|
|
87534
87534
|
var import_semver2 = __toESM2(require_semver2(), 1);
|
|
87535
87535
|
// package.json
|
|
87536
|
-
var version = "0.1.
|
|
87536
|
+
var version = "0.1.283";
|
|
87537
87537
|
var package_default = {
|
|
87538
87538
|
name: "@tscircuit/cli",
|
|
87539
87539
|
version,
|
|
@@ -214463,7 +214463,6 @@ var registerBuild = (program3) => {
|
|
|
214463
214463
|
if (hasErrors && !options?.ignoreErrors) {
|
|
214464
214464
|
process.exit(1);
|
|
214465
214465
|
}
|
|
214466
|
-
console.log("Build complete!");
|
|
214467
214466
|
if (options?.previewImages) {
|
|
214468
214467
|
console.log("Generating preview images...");
|
|
214469
214468
|
await buildPreviewImages({
|
|
@@ -214480,6 +214479,8 @@ var registerBuild = (program3) => {
|
|
|
214480
214479
|
fs30.writeFileSync(path29.join(distDir, "index.html"), indexHtml);
|
|
214481
214480
|
fs30.writeFileSync(path29.join(distDir, "standalone.min.js"), standalone_min_default);
|
|
214482
214481
|
}
|
|
214482
|
+
console.log("Build complete!");
|
|
214483
|
+
process.exit(0);
|
|
214483
214484
|
});
|
|
214484
214485
|
};
|
|
214485
214486
|
|