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
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"$schema": "https://unpkg.com/@changesets/config@4.0.0/schema.json",
"changelog": ["@changesets/changelog-github", { "repo": "microsoft/TypeScript-Website" }],
"commit": false,
"fixed": [],
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "20.x"
node-version: "22.x"
registry-url: "https://registry.npmjs.org/"
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10

Expand Down Expand Up @@ -62,9 +62,9 @@ jobs:
basic_auth="$(node -e 'process.stdout.write(Buffer.from("x-access-token:" + process.env.GITHUB_APP_TOKEN).toString("base64"))')"
echo "::add-mask::$basic_auth"
git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ${basic_auth}"
- uses: changesets/action@198f833dd7d863100ea6e28967bc9a9fdefadb0a # v2.1.0
- uses: changesets/action@8488615a623b1b9c987934bb89eae8af6a946ac1 # v2.1.1
with:
publish: pnpm ci:publish
github-token: ${{ steps.app-token.outputs.token }}
publish-script: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"node": ">= 20.19"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@changesets/changelog-github": "^1.0.0",
"@changesets/cli": "^3.0.1",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changesets is the most dev-y of dev tools, very much not required typically

"@oss-docs/sync": "^1.1.4",
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
Expand Down Expand Up @@ -66,7 +66,7 @@
]
},
"scripts": {
"ci:publish": "pnpm changeset tag && pnpm publish -r",
"ci:publish": "pnpm changeset git-tag && pnpm publish -r",
"bootstrap": "pnpm -r run bootstrap && BOOTSTRAPPING=true pnpm -r run build",
"start": "concurrently -p \"[{name}]\" -n \"BUILD,SITE\" -c \"bgBlue.bold,bgMagenta.bold\" \"node watcher.js\" \"pnpm run --filter=typescriptlang-org start\"",
"build": "pnpm run --filter=!typescriptlang-org build",
Expand Down
Loading