From 262e1968ebdabd4bf8de96cf9602e118ba63ace3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 May 2026 20:29:03 +0000 Subject: [PATCH] Release new artifacts --- .changeset/ignore-changelogs.md | 6 ------ .changeset/publish-to-npmjs.md | 13 ------------- packages/oxc-config/CHANGELOG.md | 17 +++++++++++++++++ packages/oxc-config/package.json | 2 +- packages/skills/CHANGELOG.md | 19 +++++++++++++++---- packages/skills/package.json | 2 +- packages/tsconfig/CHANGELOG.md | 11 +++++++++++ packages/tsconfig/package.json | 2 +- packages/vitest-config/CHANGELOG.md | 11 +++++++++++ packages/vitest-config/package.json | 2 +- 10 files changed, 58 insertions(+), 27 deletions(-) delete mode 100644 .changeset/ignore-changelogs.md delete mode 100644 .changeset/publish-to-npmjs.md diff --git a/.changeset/ignore-changelogs.md b/.changeset/ignore-changelogs.md deleted file mode 100644 index f41eb4e..0000000 --- a/.changeset/ignore-changelogs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@kin0992/oxc-config': patch ---- - -Ignore `CHANGELOG.md` files in the shared oxfmt and oxlint configs so generated -changelogs are left untouched by formatting and linting. diff --git a/.changeset/publish-to-npmjs.md b/.changeset/publish-to-npmjs.md deleted file mode 100644 index bade992..0000000 --- a/.changeset/publish-to-npmjs.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@kin0992/tsconfig': minor -'@kin0992/oxc-config': minor -'@kin0992/vitest-config': minor -'@kin0992/skills': minor ---- - -Publish to the public npm registry (npmjs.org) with provenance. - -These packages now ship from `https://registry.npmjs.org` under public access -instead of GitHub Packages. Consumers no longer need a `read:packages` token or -a scoped `.npmrc` entry — a plain `pnpm add @kin0992/` works anonymously. -Existing GitHub Packages versions remain available but will not receive updates. diff --git a/packages/oxc-config/CHANGELOG.md b/packages/oxc-config/CHANGELOG.md index 1bc612c..7cc9be2 100644 --- a/packages/oxc-config/CHANGELOG.md +++ b/packages/oxc-config/CHANGELOG.md @@ -1,5 +1,21 @@ # @kin0992/oxc-config +## 0.3.0 + +### Minor Changes + +- 51632aa: Publish to the public npm registry (npmjs.org) with provenance. + + These packages now ship from `https://registry.npmjs.org` under public access + instead of GitHub Packages. Consumers no longer need a `read:packages` token or + a scoped `.npmrc` entry — a plain `pnpm add @kin0992/` works anonymously. + Existing GitHub Packages versions remain available but will not receive updates. + +### Patch Changes + +- 149ac97: Ignore `CHANGELOG.md` files in the shared oxfmt and oxlint configs so generated + changelogs are left untouched by formatting and linting. + ## 0.2.1 ### Patch Changes @@ -13,6 +29,7 @@ - 2970dfb: Add multi-flavor oxlint configs Introduce four composable lint flavors so consumers can pick exactly the rules they need: + - `@kin0992/oxc-config/oxlint/core` — curated rules for any TypeScript project (eslint, typescript, import, unicorn, promise plugins) - `@kin0992/oxc-config/oxlint/react` — extends core with React, JSX A11y, and React Perf rules - `@kin0992/oxc-config/oxlint/node` — extends core with Node.js-specific rules diff --git a/packages/oxc-config/package.json b/packages/oxc-config/package.json index 6ed5a5e..dd9af6d 100644 --- a/packages/oxc-config/package.json +++ b/packages/oxc-config/package.json @@ -1,6 +1,6 @@ { "name": "@kin0992/oxc-config", - "version": "0.2.1", + "version": "0.3.0", "description": "Shared OXC formatter and lint configuration.", "license": "MIT", "repository": { diff --git a/packages/skills/CHANGELOG.md b/packages/skills/CHANGELOG.md index 3765936..74ae468 100644 --- a/packages/skills/CHANGELOG.md +++ b/packages/skills/CHANGELOG.md @@ -1,5 +1,16 @@ # @kin0992/skills +## 0.2.0 + +### Minor Changes + +- 51632aa: Publish to the public npm registry (npmjs.org) with provenance. + + These packages now ship from `https://registry.npmjs.org` under public access + instead of GitHub Packages. Consumers no longer need a `read:packages` token or + a scoped `.npmrc` entry — a plain `pnpm add @kin0992/` works anonymously. + Existing GitHub Packages versions remain available but will not receive updates. + ## 0.1.0 ### Minor Changes @@ -19,15 +30,15 @@ Before: ```ts - import.meta.resolve('@kin0992/skills/commit-message'); - import.meta.resolve('@kin0992/skills/pr-title-description'); + import.meta.resolve("@kin0992/skills/commit-message"); + import.meta.resolve("@kin0992/skills/pr-title-description"); ``` After: ```ts - import.meta.resolve('@kin0992/skills/git/commit-message'); - import.meta.resolve('@kin0992/skills/git/pr-title-description'); + import.meta.resolve("@kin0992/skills/git/commit-message"); + import.meta.resolve("@kin0992/skills/git/pr-title-description"); ``` The marketplace `git-skills` plugin and its `SKILL.md` content are unchanged diff --git a/packages/skills/package.json b/packages/skills/package.json index 382c0b3..98e36da 100644 --- a/packages/skills/package.json +++ b/packages/skills/package.json @@ -1,6 +1,6 @@ { "name": "@kin0992/skills", - "version": "0.1.0", + "version": "0.2.0", "description": "AI Skills bundle: commit messages and PR title/description.", "license": "MIT", "repository": { diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md index 513989d..ba68a4e 100644 --- a/packages/tsconfig/CHANGELOG.md +++ b/packages/tsconfig/CHANGELOG.md @@ -1,5 +1,16 @@ # @kin0992/tsconfig +## 0.1.0 + +### Minor Changes + +- 51632aa: Publish to the public npm registry (npmjs.org) with provenance. + + These packages now ship from `https://registry.npmjs.org` under public access + instead of GitHub Packages. Consumers no longer need a `read:packages` token or + a scoped `.npmrc` entry — a plain `pnpm add @kin0992/` works anonymously. + Existing GitHub Packages versions remain available but will not receive updates. + ## 0.0.2 ### Patch Changes diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 82c6856..90f283c 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@kin0992/tsconfig", - "version": "0.0.2", + "version": "0.1.0", "description": "Shared TypeScript configurations for dev-toolkit consumers.", "license": "MIT", "repository": { diff --git a/packages/vitest-config/CHANGELOG.md b/packages/vitest-config/CHANGELOG.md index def1f6b..1c00202 100644 --- a/packages/vitest-config/CHANGELOG.md +++ b/packages/vitest-config/CHANGELOG.md @@ -1,5 +1,16 @@ # @kin0992/vitest-config +## 0.1.0 + +### Minor Changes + +- 51632aa: Publish to the public npm registry (npmjs.org) with provenance. + + These packages now ship from `https://registry.npmjs.org` under public access + instead of GitHub Packages. Consumers no longer need a `read:packages` token or + a scoped `.npmrc` entry — a plain `pnpm add @kin0992/` works anonymously. + Existing GitHub Packages versions remain available but will not receive updates. + ## 0.0.2 ### Patch Changes diff --git a/packages/vitest-config/package.json b/packages/vitest-config/package.json index 3466c9c..87717ad 100644 --- a/packages/vitest-config/package.json +++ b/packages/vitest-config/package.json @@ -1,6 +1,6 @@ { "name": "@kin0992/vitest-config", - "version": "0.0.2", + "version": "0.1.0", "description": "Shared Vitest configurations.", "license": "MIT", "repository": {