From cc974a9a08345347fd1ff2f562a23e884924f5b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:00:54 +0900 Subject: [PATCH 1/9] Create .releaserc.json --- .releaserc.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .releaserc.json diff --git a/.releaserc.json b/.releaserc.json new file mode 100644 index 0000000..ef9bea2 --- /dev/null +++ b/.releaserc.json @@ -0,0 +1,21 @@ +{ + "branches": ["release"], + "plugins": [ + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", + [ + "@semantic-release/npm", + { + "npmPublish": false + } + ], + [ + "@semantic-release/github", + { + "failComment": false, + "failTitle": false, + "labels": false + } + ] + ] +} From 461fd00890247f2701474e3d252cc86d215fe5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:03:17 +0900 Subject: [PATCH 2/9] Update .releaserc.json --- .releaserc.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index ef9bea2..aec23d2 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -3,12 +3,6 @@ "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", - [ - "@semantic-release/npm", - { - "npmPublish": false - } - ], [ "@semantic-release/github", { From 07202e1bca346b5a3347ce262d462519a928987a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:05:23 +0900 Subject: [PATCH 3/9] Update npm-publish-github-packages.yml --- .github/workflows/npm-publish-github-packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml index 88e825a..552b964 100644 --- a/.github/workflows/npm-publish-github-packages.yml +++ b/.github/workflows/npm-publish-github-packages.yml @@ -38,4 +38,5 @@ jobs: - name: Release with semantic-release to GitHub Packages only env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: pnpm run release From e380f103a12ac176ace727e7e746fa61896672c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:09:55 +0900 Subject: [PATCH 4/9] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 51dc184..87c69f7 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "comcigan.ts", + "name": "@imnyang/comcigan.ts", "version": "0.0.0-development", "description": "A Comcigan parser written in TypeScript", "main": "dist/index.js", From 1596c697c67e45525c7bf679f9a8cc292aeffa67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:10:55 +0900 Subject: [PATCH 5/9] Update npm-publish-github-packages.yml --- .github/workflows/npm-publish-github-packages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml index 552b964..1ae7214 100644 --- a/.github/workflows/npm-publish-github-packages.yml +++ b/.github/workflows/npm-publish-github-packages.yml @@ -27,7 +27,6 @@ jobs: with: node-version: 20 cache: 'pnpm' - registry-url: https://npm.pkg.github.com/ - name: Install dependencies run: pnpm install --frozen-lockfile From 9d393c87cedd7364e07c62821232e6d072be12ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:11:51 +0900 Subject: [PATCH 6/9] Delete .releaserc.json --- .releaserc.json | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .releaserc.json diff --git a/.releaserc.json b/.releaserc.json deleted file mode 100644 index aec23d2..0000000 --- a/.releaserc.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "branches": ["release"], - "plugins": [ - "@semantic-release/commit-analyzer", - "@semantic-release/release-notes-generator", - [ - "@semantic-release/github", - { - "failComment": false, - "failTitle": false, - "labels": false - } - ] - ] -} From 5f0202dc1dad6a516cf51322c1e5e46919f391fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:13:20 +0900 Subject: [PATCH 7/9] Update npm-publish-github-packages.yml --- .github/workflows/npm-publish-github-packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml index 1ae7214..552b964 100644 --- a/.github/workflows/npm-publish-github-packages.yml +++ b/.github/workflows/npm-publish-github-packages.yml @@ -27,6 +27,7 @@ jobs: with: node-version: 20 cache: 'pnpm' + registry-url: https://npm.pkg.github.com/ - name: Install dependencies run: pnpm install --frozen-lockfile From ee4a4f4d8035a48e4bfdf4adb4e1f4a95addc123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:15:04 +0900 Subject: [PATCH 8/9] Update array.ts --- src/utils/array.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/array.ts b/src/utils/array.ts index 44bbab3..98e4d62 100644 --- a/src/utils/array.ts +++ b/src/utils/array.ts @@ -9,3 +9,4 @@ export const mergeMap = ( return result } + From 3db827aad10ed47a8e8f335a713c6cad2dfdd1cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=94=EB=83=A5=20=28imnyang=29?= Date: Fri, 6 Jun 2025 04:16:43 +0900 Subject: [PATCH 9/9] feat: Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5b83e89..00523e8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # comcigan.ts +포크 참조 + [![npm version](https://img.shields.io/npm/v/comcigan.ts?style=flat-square)](https://www.npmjs.com/package/comcigan.ts) ![License](https://img.shields.io/github/license/star0202/comcigan.ts?style=flat-square)