diff --git a/packages/cli/.npmignore b/packages/cli/.npmignore index 9f82e79..ccc2990 100644 --- a/packages/cli/.npmignore +++ b/packages/cli/.npmignore @@ -1,2 +1,3 @@ src/ -node_modules/ \ No newline at end of file +node_modules/ +index.ts \ No newline at end of file diff --git a/packages/cli/index.ts b/packages/cli/index.ts index e6e9f51..c6d2dac 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -1,3 +1,5 @@ +#!/usr/bin/env node + import { createNewFolder } from "./src/create-new-repo"; import { getInputs } from "./src/get-inputs"; diff --git a/packages/cli/package.json b/packages/cli/package.json index c464c15..4bb27b5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -3,7 +3,7 @@ "module": "index.ts", "type": "module", "bin": "dist/index.cjs", - "version": "1.0.1", + "version": "1.0.2", "scripts": { "build": "tsup index.ts" },