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
4 changes: 2 additions & 2 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ on:
env:
# Change this to invalidate existing cache.
CACHE_PREFIX: v0
NODE_VERSION: "20.x"
PNPM_VERSION: "9.5.0"
NODE_VERSION: "22.x"
PNPM_VERSION: "10.30.2"

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
node-version: '22.x'

- name: Setup Python
uses: actions/setup-python@v3
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Install prerequisites
run: |
pip install --upgrade pip setuptools wheel virtualenv
npm install -g pnpm@9.5.0
npm install -g pnpm@10.30.2
pnpm install

- name: Set build variables
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/usage/local_dev_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ weight: 105
## Prerequisites

- [Python 3.9+](https://www.python.org/downloads/)
- [Node.js 18+](https://nodejs.org/)
- [pnpm](https://pnpm.io/installation)
- [Node.js 22+](https://nodejs.org/) (required by the vendored TypeSpec 1.13 submodule)
- [pnpm 10+](https://pnpm.io/installation) (the workspace uses pnpm 10 `catalog:`/overrides syntax)

---

Expand Down
14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
"name": "aaz-dev-tools",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.5.0",
"packageManager": "pnpm@10.30.2",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"run-all": "pnpm -r --filter=\"!./src/typespec/core/\" ",
"build:typespec": "pnpm install -C src/typespec/ && pnpm -r --filter=\"!./src/web/\" --filter=\"!./src/typespec/core/\" --filter=\"!./src/typespec/core/packages/typespec-vs\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ",
"build:typespec": "pnpm install -C src/typespec/ && pnpm -C src/typespec -r --filter=\"!@typespec/monorepo\" --filter=\"!@azure-tools/typespec-azure-monorepo\" --filter=\"!@typespec/typespec-vs\" --filter=\"!@typespec/website\" --filter=\"!@azure-tools/typespec-azure-website\" --filter=\"!...@typespec/emitter-framework\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build && pnpm -C src/typespec-aaz build",
"build:web": "pnpm -r --filter=\"./src/web/\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ",
"bundle": "node ./eng/scripts/bundle_dists.js",
"test-aaz-emitter": "cd ./src/typespec-aaz && pnpm test-aaz",
Expand Down Expand Up @@ -33,5 +37,11 @@
},
"dependencies": {
"picocolors": "~1.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22"
}
}
}
Loading
Loading