@color-sunset/veye 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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  // @bun
3
3
  import { createRequire } from "node:module";
4
4
  var __create = Object.create;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@color-sunset/veye",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Doc-freshness engine — measure, surface, and gate on documentation staleness",
6
6
  "keywords": [
@@ -34,7 +34,7 @@
34
34
  "access": "public"
35
35
  },
36
36
  "scripts": {
37
- "build": "bun build src/cli.ts --outfile dist/cli.js --target=node",
37
+ "build": "bun build src/cli.ts --outfile dist/cli.js --target=node && sed -i '' '1s|.*|#!/usr/bin/env node|' dist/cli.js",
38
38
  "dev": "bun run src/cli.ts",
39
39
  "typecheck": "tsc --noEmit"
40
40
  },