diff --git a/build.ts b/build.ts index f4118ae..c4b09a8 100644 --- a/build.ts +++ b/build.ts @@ -1,9 +1,9 @@ -import { watch } from "fs" -import { join } from "path" -import { refreshTemplateWorkerCommand } from "@kksh/api/dev" -import { $ } from "bun" +import {watch} from "fs"; +import {join} from "path"; +import {refreshTemplateWorkerCommand} from "@kksh/api/dev"; +import {$} from "bun"; -const entrypoints = ["./src/index.ts"] +const entrypoints = ["./src/camel-case.ts"]; async function build() { try { diff --git a/package.json b/package.json index b71c857..21174fc 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "headlessCmds": [ { "name": "Convert clipboard text to Camel Case", - "main": "dist/index.js", + "main": "dist/camel-case.js", "cmds": [] } ] diff --git a/src/index.ts b/src/camel-case.ts similarity index 100% rename from src/index.ts rename to src/camel-case.ts