diff --git a/cli.js b/cli.js deleted file mode 100644 index d04edce..0000000 --- a/cli.js +++ /dev/null @@ -1,6 +0,0 @@ -#! /usr/bin/env node -import { main } from "./lib"; - -(async () => { - await main(process.cwd()); -})(); diff --git a/lib.js b/index.js similarity index 100% rename from lib.js rename to index.js diff --git a/package.json b/package.json index 486125b..8d73bcb 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "aicommits", - "version": "0.0.6", + "version": "0.0.7", "description": "Writes your git commit messages for you with AI", - "main": "cli.js", + "main": "index.js", "bin": { - "aicommits": "./cli.js" + "aicommits": "./index.js" }, "type": "module", "repository": "https://github.com/Nutlope/aicommits",