Skip to content

Commit

Permalink
fix: readd shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVolland committed Sep 13, 2024
1 parent 1d99af6 commit 9003ba7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"version": "4.0.0",
"description": "",
"type": "module",
"main": "dist/src/index.js",
"main": "src/index.js",
"files": [
"dist"
],
"bin": {
"geostyler-cli": "dist/src/index.js"
"geostyler-cli": "src/index.js"
},
"scripts": {
"build": "bun run build-clean && bun run build-only",
Expand Down Expand Up @@ -43,8 +43,9 @@
},
"homepage": "https://github.com/geostyler/geostyler-cli#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
"bun": ">=1.0.0",
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

import SLDParser from 'geostyler-sld-parser';
import QGISParser from 'geostyler-qgis-parser';
import MapfileParser from 'geostyler-mapfile-parser';
Expand Down

0 comments on commit 9003ba7

Please sign in to comment.