Run CLI via tsx (no build required); note in README

This commit is contained in:
Peter Steinberger
2025-11-24 13:28:34 +01:00
parent fc5f375142
commit 5fcbd6aadc
2 changed files with 4 additions and 4 deletions

View File

@@ -11,9 +11,9 @@
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"warelay": "node dist/index.js",
"warely": "node dist/index.js",
"start": "tsx src/index.ts",
"warelay": "tsx src/index.ts",
"warely": "tsx src/index.ts",
"lint": "echo \"No linter configured\"",
"test": "echo \"No tests yet\""
},