Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/ignore-changelogs.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/publish-to-npmjs.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/oxc-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/<pkg>` 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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/oxc-config/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
19 changes: 15 additions & 4 deletions packages/skills/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/<pkg>` works anonymously.
Existing GitHub Packages versions remain available but will not receive updates.

## 0.1.0

### Minor Changes
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/skills/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
11 changes: 11 additions & 0 deletions packages/tsconfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/<pkg>` works anonymously.
Existing GitHub Packages versions remain available but will not receive updates.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
11 changes: 11 additions & 0 deletions packages/vitest-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/<pkg>` works anonymously.
Existing GitHub Packages versions remain available but will not receive updates.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kin0992/vitest-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shared Vitest configurations.",
"license": "MIT",
"repository": {
Expand Down
Loading