@junwu168/openshell 0.1.0 → 0.1.1

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.
@@ -4,7 +4,10 @@
4
4
  "Bash(git:*)",
5
5
  "Bash(bun test:*)",
6
6
  "Bash(gh repo:*)",
7
- "Bash(gh release:*)"
7
+ "Bash(gh release:*)",
8
+ "Bash(bun run:*)",
9
+ "Bash(npx tsc:*)",
10
+ "Bash(npm pack:*)"
8
11
  ]
9
12
  }
10
13
  }
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  type WritableLike = {
2
3
  write(chunk: string): void;
3
4
  };
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { stderr, stdout } from "node:process";
2
3
  import { runInstallCli } from "../product/install.js";
3
4
  import { runUninstallCli } from "../product/uninstall.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junwu168/openshell",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "openshell": "./dist/cli/openshell.js"
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { stderr, stdout } from "node:process"
2
3
  import { runInstallCli } from "../product/install.js"
3
4
  import { runUninstallCli } from "../product/uninstall.js"