Skip to content

Commit 8bd7281

Browse files
committed
chore: Initial release
1 parent 299c9f5 commit 8bd7281

7 files changed

Lines changed: 847 additions & 77 deletions

File tree

.changeset/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changesets
2+
3+
Run `vp run changeset` in every PR that changes the published package.
4+
5+
Choose `patch`, `minor`, or `major`, write a user-facing summary, and commit the generated Markdown file. Documentation, tests, and internal refactors do not need a changeset.

.changeset/config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.4/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"access": "public",
6+
"baseBranch": "main",
7+
"updateInternalDependencies": "patch",
8+
"ignore": []
9+
}

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
permissions:
9+
contents: read
10+
11+
concurrency:
12+
group: ci-${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
quality:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v6
20+
- uses: voidzero-dev/setup-vp@v1
21+
with:
22+
node-version: "22"
23+
cache: true
24+
run-install: false
25+
- run: vp install --frozen-lockfile
26+
- run: vp check
27+
- run: vp test
28+
- run: vp pack

.github/workflows/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
id-token: write
12+
13+
concurrency:
14+
group: release-${{ github.ref }}
15+
cancel-in-progress: false
16+
17+
jobs:
18+
release:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v6
22+
- uses: voidzero-dev/setup-vp@v1
23+
with:
24+
node-version: "24"
25+
run-install: false
26+
- run: vp install --frozen-lockfile
27+
- run: vp check
28+
- run: vp test
29+
- uses: changesets/action@v1
30+
with:
31+
publish: vp exec changeset publish
32+
version: vp exec changeset version
33+
title: "chore: release"
34+
commit: "chore: release"
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @jynxio/query
2+
3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- Initial release.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,16 @@
3232
"./package.json": "./package.json"
3333
},
3434
"publishConfig": {
35-
"access": "public"
35+
"access": "public",
36+
"provenance": true
3637
},
3738
"scripts": {
3839
"build": "vp pack",
3940
"dev": "vp pack --watch",
4041
"test": "vp test",
4142
"check": "vp check",
4243
"check:ts": "vp check --no-fmt --no-lint",
44+
"changeset": "changeset",
4345
"prepack": "vp run build"
4446
},
4547
"dependencies": {
@@ -51,10 +53,10 @@
5153
"@arethetypeswrong/core": "0.18.5",
5254
"@babel/core": "^8.0.1",
5355
"@babel/preset-env": "^8.0.2",
56+
"@changesets/cli": "^2.31.1",
5457
"@rolldown/plugin-babel": "0.2.3",
5558
"@types/node": "^25.6.2",
5659
"babel-plugin-polyfill-corejs3": "^1.0.0",
57-
"bumpp": "^11.1.0",
5860
"publint": "0.3.22",
5961
"typescript": "^7.0.2",
6062
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",

0 commit comments

Comments
 (0)