From 36365f6d5e4ae631400b1e9a5ab41d22e639cd47 Mon Sep 17 00:00:00 2001 From: Hiroki Osame Date: Thu, 16 Feb 2023 14:45:51 +0900 Subject: [PATCH] build: use pkgroll --- .github/CONTRIBUTING.md | 19 ------------------- tsconfig.json | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index abab200..4f75c66 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -40,22 +40,3 @@ Or in non UNIX environments, you can use Node.js to run the file: ``` node ./dist/cli.mjs ``` - -## Testing the package -After commiting your changes, you can create a test release via GitHub using [`git-publish`](https://github.com/privatenumber/git-publish): - -``` -$ pnpm dlx git-publish -✔ Successfully published branch! Install with command: - → npm i 'privatenumber/aicommits#npm/main' -``` - -You can test it out in any project like this: -``` -pnpm dlx 'privatenumber/aicommits#npm/main' -``` - -Or using npx: -``` -npx 'privatenumber/aicommits#npm/main' -``` diff --git a/tsconfig.json b/tsconfig.json index 0d34013..f4167ec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "noEmit": true, + "outDir": "dist", "target": "ES2020", "module": "Node16", "strict": true,