Bump version to 0.2.0 and update build script to make CLI executable

This commit is contained in:
2026-03-05 21:36:52 +01:00
parent cb41e7dec1
commit b88b35cb90

View File

@@ -1,6 +1,6 @@
{ {
"name": "@slawek/sk-az-tools", "name": "@slawek/sk-az-tools",
"version": "0.1.0", "version": "0.2.0",
"type": "module", "type": "module",
"files": [ "files": [
"dist", "dist",
@@ -9,7 +9,7 @@
], ],
"scripts": { "scripts": {
"clean": "rm -rf dist", "clean": "rm -rf dist",
"build": "npm run clean && tsc", "build": "npm run clean && tsc && chmod +x dist/cli.js",
"build:watch": "tsc --watch", "build:watch": "tsc --watch",
"prepublishOnly": "npm run build" "prepublishOnly": "npm run build"
}, },