diff --git a/build.ts b/build.ts index 4aa7dfc..240734b 100644 --- a/build.ts +++ b/build.ts @@ -9,6 +9,7 @@ const entrypoints = [ "./src/kebab.ts", "./src/lower-case.ts", "./src/snake-case.ts", + "./src/start-case.ts", ]; async function build() { diff --git a/package.json b/package.json index 50901eb..919e308 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "cmds": [] }, { - "name": "Convert clipboard text to Capitalize", + "name": "Convert clipboard text to Capitalize text", "main": "dist/capitalize.js", "cmds": [] }, @@ -43,6 +43,11 @@ "name": "Convert clipboard text to snake_case", "main": "dist/snake-case.js", "cmds": [] + }, + { + "name": "Convert clipboard text to Start Case", + "main": "dist/start-case.js", + "cmds": [] } ] }, diff --git a/src/start-case.ts b/src/start-case.ts new file mode 100644 index 0000000..2632ee9 --- /dev/null +++ b/src/start-case.ts @@ -0,0 +1,11 @@ +import { expose } from "@kksh/api/headless"; +import startCase from "lodash/startCase"; +import { BaseExt } from "./base"; + +class StartCaseExt extends BaseExt { + constructor() { + super(startCase); + } +} + +expose(new StartCaseExt()); \ No newline at end of file