Skip to content

Commit 262e196

Browse files
Release new artifacts
1 parent 149ac97 commit 262e196

10 files changed

Lines changed: 58 additions & 27 deletions

File tree

.changeset/ignore-changelogs.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/publish-to-npmjs.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/oxc-config/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @kin0992/oxc-config
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 51632aa: Publish to the public npm registry (npmjs.org) with provenance.
8+
9+
These packages now ship from `https://registry.npmjs.org` under public access
10+
instead of GitHub Packages. Consumers no longer need a `read:packages` token or
11+
a scoped `.npmrc` entry — a plain `pnpm add @kin0992/<pkg>` works anonymously.
12+
Existing GitHub Packages versions remain available but will not receive updates.
13+
14+
### Patch Changes
15+
16+
- 149ac97: Ignore `CHANGELOG.md` files in the shared oxfmt and oxlint configs so generated
17+
changelogs are left untouched by formatting and linting.
18+
319
## 0.2.1
420

521
### Patch Changes
@@ -13,6 +29,7 @@
1329
- 2970dfb: Add multi-flavor oxlint configs
1430

1531
Introduce four composable lint flavors so consumers can pick exactly the rules they need:
32+
1633
- `@kin0992/oxc-config/oxlint/core` — curated rules for any TypeScript project (eslint, typescript, import, unicorn, promise plugins)
1734
- `@kin0992/oxc-config/oxlint/react` — extends core with React, JSX A11y, and React Perf rules
1835
- `@kin0992/oxc-config/oxlint/node` — extends core with Node.js-specific rules

packages/oxc-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kin0992/oxc-config",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Shared OXC formatter and lint configuration.",
55
"license": "MIT",
66
"repository": {

packages/skills/CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @kin0992/skills
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- 51632aa: Publish to the public npm registry (npmjs.org) with provenance.
8+
9+
These packages now ship from `https://registry.npmjs.org` under public access
10+
instead of GitHub Packages. Consumers no longer need a `read:packages` token or
11+
a scoped `.npmrc` entry — a plain `pnpm add @kin0992/<pkg>` works anonymously.
12+
Existing GitHub Packages versions remain available but will not receive updates.
13+
314
## 0.1.0
415

516
### Minor Changes
@@ -19,15 +30,15 @@
1930
Before:
2031

2132
```ts
22-
import.meta.resolve('@kin0992/skills/commit-message');
23-
import.meta.resolve('@kin0992/skills/pr-title-description');
33+
import.meta.resolve("@kin0992/skills/commit-message");
34+
import.meta.resolve("@kin0992/skills/pr-title-description");
2435
```
2536

2637
After:
2738

2839
```ts
29-
import.meta.resolve('@kin0992/skills/git/commit-message');
30-
import.meta.resolve('@kin0992/skills/git/pr-title-description');
40+
import.meta.resolve("@kin0992/skills/git/commit-message");
41+
import.meta.resolve("@kin0992/skills/git/pr-title-description");
3142
```
3243

3344
The marketplace `git-skills` plugin and its `SKILL.md` content are unchanged

packages/skills/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kin0992/skills",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "AI Skills bundle: commit messages and PR title/description.",
55
"license": "MIT",
66
"repository": {

packages/tsconfig/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @kin0992/tsconfig
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- 51632aa: Publish to the public npm registry (npmjs.org) with provenance.
8+
9+
These packages now ship from `https://registry.npmjs.org` under public access
10+
instead of GitHub Packages. Consumers no longer need a `read:packages` token or
11+
a scoped `.npmrc` entry — a plain `pnpm add @kin0992/<pkg>` works anonymously.
12+
Existing GitHub Packages versions remain available but will not receive updates.
13+
314
## 0.0.2
415

516
### Patch Changes

packages/tsconfig/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kin0992/tsconfig",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "Shared TypeScript configurations for dev-toolkit consumers.",
55
"license": "MIT",
66
"repository": {

packages/vitest-config/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @kin0992/vitest-config
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- 51632aa: Publish to the public npm registry (npmjs.org) with provenance.
8+
9+
These packages now ship from `https://registry.npmjs.org` under public access
10+
instead of GitHub Packages. Consumers no longer need a `read:packages` token or
11+
a scoped `.npmrc` entry — a plain `pnpm add @kin0992/<pkg>` works anonymously.
12+
Existing GitHub Packages versions remain available but will not receive updates.
13+
314
## 0.0.2
415

516
### Patch Changes

packages/vitest-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kin0992/vitest-config",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "Shared Vitest configurations.",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)