@tscircuit/cli 0.1.46 → 0.1.47
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 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -394211,6 +394211,8 @@ var detectPackageManager = () => {
|
|
|
394211
394211
|
return "pnpm";
|
|
394212
394212
|
if (fs.existsSync("bun.lockb"))
|
|
394213
394213
|
return "bun";
|
|
394214
|
+
if (fs.existsSync("bun.lock"))
|
|
394215
|
+
return "bun";
|
|
394214
394216
|
return "npm";
|
|
394215
394217
|
};
|
|
394216
394218
|
|
|
@@ -395497,7 +395499,7 @@ var package_default = {
|
|
|
395497
395499
|
name: "@tscircuit/cli",
|
|
395498
395500
|
main: "dist/main.js",
|
|
395499
395501
|
type: "module",
|
|
395500
|
-
version: "0.1.
|
|
395502
|
+
version: "0.1.46",
|
|
395501
395503
|
bin: {
|
|
395502
395504
|
tsci: "./dist/main.js"
|
|
395503
395505
|
},
|