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
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,10 @@ jobs:
- uses: ./.github/actions/initialize
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "24.x"
cache: "pnpm"
- run: pnpm i --frozen-lockfile
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Test & Build
run: |
pnpm build
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
registry-url: https://npm.pkg.github.com
scope: "@Himenon"
cache: "pnpm"
- run: pnpm i --frozen-lockfile
- run: |
pnpm build
- run: pnpm install --frozen-lockfile
- run: pnpm build

release-github-registry:
runs-on: ubuntu-latest
Expand All @@ -37,7 +36,7 @@ jobs:
registry-url: https://npm.pkg.github.com
scope: "@Himenon"
cache: "pnpm"
- run: pnpm install
- run: pnpm install --frozen-lockfile
- run: |
pnpm build
pnpm run release:github:registry
Expand All @@ -59,6 +58,6 @@ jobs:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- run: pnpm install
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: NPM_CONFIG_PROVENANCE=true pnpm run release:npm:registry
2 changes: 1 addition & 1 deletion .github/workflows/versionUp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
node-version: "24.x"
cache: "pnpm"
- run: pnpm i --frozen-lockfile
- run: pnpm install --frozen-lockfile
- name: Auto version update
run: |
pnpm lerna:version:up
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.12/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.10/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"formatter": {
"enabled": true,
Expand All @@ -9,7 +9,7 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"preset": "recommended",
"style": {
"noParameterAssign": "error",
"useAsConstAssertion": "error",
Expand Down
3 changes: 3 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[tools]
node = "24"
pnpm = "12"
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,39 +90,39 @@
"@himenon/path-oriented-data-structure": "2.0.1",
"@types/json-schema": "7.0.15",
"ajv": "8.20.0",
"dot-prop": "10.1.0",
"js-yaml": "4.1.1"
"dot-prop": "10.2.0",
"js-yaml": "5.4.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@swc/core": "^1.15.40",
"@swc/helpers": "^0.5.21",
"@biomejs/biome": "^2.5.10",
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@swc/core": "^1.16.1",
"@swc/helpers": "^0.5.23",
"@types/chokidar": "2.1.7",
"@types/js-yaml": "4.0.9",
"@types/node": "25.9.1",
"@types/node": "26.4.0",
"@types/rimraf": "4.0.5",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/coverage-v8": "^4.1.11",
"chokidar": "5.0.0",
"conventional-changelog-angular-all": "1.7.0",
"cpy": "13.2.2",
"dependency-cruiser": "17.4.2",
"execa": "9.6.1",
"dependency-cruiser": "18.2.0",
"execa": "10.0.1",
"generate-changelog": "1.8.0",
"import-sort-style-module": "6.0.0",
"lefthook": "^2.1.8",
"lerna": "9.0.7",
"lefthook": "^2.1.10",
"lerna": "10.0.1",
"npm-run-all": "4.1.5",
"openapi-schema-validator": "12.1.3",
"rimraf": "6.1.3",
"sort-package-json": "3.6.1",
"sort-package-json": "4.0.0",
"ts-node": "10.9.2",
"tsup": "^8.5.1",
"typescript": "6.0.3",
"vitest": "^4.1.7"
"vitest": "^4.1.11"
},
"packageManager": "pnpm@10.33.2",
"packageManager": "pnpm@12.3.1",
"engines": {
"node": ">=24.0.0"
},
Expand Down
Loading
Loading