From d948f42c49c8dd7f65f0de0ef0a43b827707065b Mon Sep 17 00:00:00 2001 From: Nan72 Date: Fri, 14 Feb 2025 12:14:35 +0700 Subject: [PATCH] ref(camel): rename entry point --- build.ts | 10 +++++----- package.json | 2 +- src/{index.ts => camel-case.ts} | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename src/{index.ts => camel-case.ts} (100%) 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