zshy 0.0.10 → 0.0.11

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/index.cjs ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const main_1 = require("./main.cjs");
5
+ const utils_1 = require("./utils.cjs");
6
+ // Run the script
7
+ (0, main_1.main)().catch((error) => {
8
+ (0, utils_1.emojiLog)("❌", `Build failed: ${error}`, "error");
9
+ process.exit(1);
10
+ });
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import { main } from "./main.js";
3
+ import { emojiLog } from "./utils.js";
4
+ // Run the script
5
+ main().catch((error) => {
6
+ emojiLog("❌", `Build failed: ${error}`, "error");
7
+ process.exit(1);
8
+ });