fix: remove duplicate shebang from source file

- tsup banner already adds shebang, no need in source
- bump version to 1.0.2
- fixes CLI execution errors

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ajax Davis 2025-12-04 23:43:03 +10:00
parent 051e58c23d
commit 75f652e2f2
2 changed files with 1 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@tpmjs/create-basic-tools",
"version": "1.0.0",
"version": "1.0.2",
"description": "CLI generator for scaffolding production-ready TPMJS tool packages",
"type": "module",
"bin": {

View file

@ -1,5 +1,3 @@
#!/usr/bin/env node
import { Command } from 'commander';
import { runInteractiveCLI } from './cli.js';