@lightupai/polaris 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/bin/polaris +4 -0
  2. package/package.json +2 -2
package/bin/polaris ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env bash
2
+ # Polaris CLI wrapper
3
+ DIR="$(cd "$(dirname "$0")/.." && pwd)"
4
+ exec npx bun "$DIR/src/cli/cli.ts" "$@"
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@lightupai/polaris",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "bin": {
6
- "polaris": "src/cli/cli.ts"
6
+ "polaris": "bin/polaris"
7
7
  },
8
8
  "scripts": {
9
9
  "test": "bun test"