zile 0.0.2 → 0.0.3

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/Cli.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  /**
3
3
  * Runs the CLI with the given arguments.
4
4
  *
package/dist/Cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  import { cac } from 'cac';
3
3
  import * as commands from './internal/cli/commands.js';
4
4
  import pkgJson from './internal/package.json' with { type: 'json' };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zile",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "license": "MIT",
6
6
  "bin": {
7
7
  "zile": "./dist/Cli.js"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zile",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "license": "MIT",
6
6
  "bin": {
7
7
  "zile": "./dist/Cli.js"
package/src/Cli.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  import { cac } from 'cac'
3
3
  import * as commands from './internal/cli/commands.js'
4
4
  import pkgJson from './internal/package.json' with { type: 'json' }