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
16 changes: 9 additions & 7 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,13 @@ jobs:
path: .turbo

- name: Create release Pull Request or publish to NPM
uses: changesets/action@v1
# v2 is required by @changesets/cli v3, which reports published packages through
# a CHANGESETS_OUTPUT file instead of the stdout format v1 used to parse.
# Pinned to a commit hash because this step holds contents: write and the npm
# trusted publishing token; changesets/action@v2 is a branch, not a tag.
uses: changesets/action@8488615a623b1b9c987934bb89eae8af6a946ac1 # v2.1.1
with:
commit: "ci(changesets): version packages"
title: "Changeset: New Version"
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm publish-pkg
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
commit-message: "ci(changesets): version packages"
pr-title: "Changeset: New Version"
# Packages are already built by the step above; publish-pkg only runs changeset publish.
publish-script: pnpm publish-pkg
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,35 +25,35 @@
"clean": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist .turbo .rslib node_modules/.cache",
"reset": "pnpm clean && pnpm reset:modules",
"reset:modules": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules pnpm-lock.yaml",
"list-outdated-deps": "pnpm outdated -r --format list !eslint !@eslint/js",
"list-outdated-deps": "pnpm outdated -r --format list !eslint !@eslint/js !typescript",
"update-outdated-deps": "pnpm run --sequential \"/^update-outdated-deps:.*/\"",
"update-outdated-deps:update-version": "pnpm update -r --latest !eslint !@eslint/js",
"update-outdated-deps:update-version": "pnpm update -r --latest !eslint !@eslint/js !typescript",
"update-outdated-deps:update-peers": "syncpack fix",
"update-outdated-deps:fix-pkg-json": "eslint --fix --no-cache --no-ignore package.json **/package.json"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@changesets/changelog-github": "1.0.0",
"@changesets/cli": "3.0.1",
"@eslint/js": "9.39.2",
"@types/node": "26.1.1",
"@typescript-eslint/parser": "8.63.0",
"@types/node": "26.4.0",
"@typescript-eslint/parser": "8.68.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@workleap/eslint-configs": "2.0.4",
"@workleap/eslint-configs": "2.0.5",
"@workleap/typescript-configs": "5.0.0",
"agent-browser": "0.31.1",
"agent-browser": "0.35.2",
"eslint": "9.39.2",
"jiti": "2.7.0",
"pkg-pr-new": "0.0.75",
"prettier": "3.9.4",
"pkg-pr-new": "0.0.88",
"prettier": "3.9.6",
"retypeapp": "4.6.0",
"syncpack": "15.3.2",
"turbo": "2.10.4",
"syncpack": "15.3.3",
"turbo": "2.10.12",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0"
"typescript-eslint": "8.68.0"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11"
"pnpm": ">=12"
},
"packageManager": "pnpm@11.0.8"
"packageManager": "pnpm@12.2.1"
}
10 changes: 5 additions & 5 deletions packages/logging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rsbuild/core": "2.1.5",
"@rsbuild/core": "2.2.1",
"@rslib/core": "0.23.2",
"@typescript-eslint/parser": "8.63.0",
"@typescript-eslint/parser": "8.68.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@workleap/eslint-configs": "2.0.4",
"@workleap/eslint-configs": "2.0.5",
"@workleap/rslib-configs": "1.2.1",
"@workleap/typescript-configs": "5.0.0",
"eslint": "9.39.2",
"typescript-eslint": "8.63.0",
"vitest": "4.1.10"
"typescript-eslint": "8.68.0",
"vitest": "4.1.11"
},
"sideEffects": false
}
Loading
Loading