Skip to content

Commit 33e3d72

Browse files
chore: Bump to pnpm 10 (#163)
1 parent 4d845d1 commit 33e3d72

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/agent-release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ jobs:
4242

4343
- name: Setup pnpm
4444
uses: pnpm/action-setup@v4
45-
with:
46-
version: 10.14.0
45+
4746
- name: Setup Node.js
4847
uses: actions/setup-node@v4
4948
with:
5049
node-version: 22
5150
registry-url: https://registry.npmjs.org
5251
cache: "pnpm"
52+
5353
- name: Install dependencies
5454
run: pnpm install --frozen-lockfile
5555

@@ -61,4 +61,3 @@ jobs:
6161
run: npm publish
6262
env:
6363
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
64-

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ jobs:
8686
fetch-depth: 0
8787
- name: Setup pnpm
8888
uses: pnpm/action-setup@v4
89-
with:
90-
version: 10.14.0
9189
- name: Setup Node.js
9290
uses: actions/setup-node@v4
9391
with:

.github/workflows/typecheck.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,12 @@ jobs:
1515
persist-credentials: false
1616
- name: Setup pnpm
1717
uses: pnpm/action-setup@v4
18-
with:
19-
version: 10.14.0
2018
- name: Setup Node.js
2119
uses: actions/setup-node@v4
2220
with:
2321
node-version: 22
24-
cache: 'pnpm'
22+
cache: "pnpm"
2523
- name: Install dependencies
2624
run: pnpm install --frozen-lockfile
2725
- name: Run type check
2826
run: pnpm run typecheck
29-

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is the monorepo for PostHog's Array desktop task manager and the agent fram
1212
### Prerequisites
1313

1414
- Node.js 22+
15-
- pnpm 9+
15+
- pnpm 10.23.0
1616

1717
### Setup
1818

@@ -64,4 +64,4 @@ array-monorepo/
6464
│ └── agent/ # Agent framework
6565
├── pnpm-workspace.yaml # Workspace configuration
6666
└── package.json # Root package.json
67-
```
67+
```

apps/array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Free product engineers from distractions so they can focus on what they love: bu
1111
### Prerequisites
1212

1313
- Node.js 22+
14-
- pnpm 9+
14+
- pnpm 10+
1515

1616
### Setup
1717

@@ -88,7 +88,6 @@ array/
8888
- `⌘⇧[/]` - Switch between tabs
8989
- `⌘W` - Close current tab
9090

91-
9291
### Building Distributables
9392

9493
To create production distributables (DMG, ZIP):
@@ -102,6 +101,7 @@ pnpm make
102101
```
103102

104103
Output will be in:
104+
105105
- `out/Array-darwin-arm64/Array.app` - Packaged app
106106
- `out/make/Array-*.dmg` - macOS installer
107107
- `out/make/zip/` - ZIP archives

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
"private": true,
55
"description": "Array monorepo - PostHog desktop task manager and agent",
66
"engines": {
7-
"node": ">=22.0.0",
8-
"pnpm": ">=9.0.0"
7+
"node": ">=22.0.0"
98
},
10-
"packageManager": "pnpm@10.14.0",
9+
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
1110
"scripts": {
1211
"setup": "bash apps/array/bin/setup",
1312
"dev": "mprocs",

pnpm-workspace.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
packages:
2-
- 'apps/*'
3-
- 'packages/*'
2+
- apps/*
3+
- packages/*
44

55
onlyBuiltDependencies:
6+
- "@parcel/watcher"
7+
- core-js
68
- electron
79
- esbuild
10+
- fs-xattr
11+
- macos-alias
12+
- node-pty
13+
14+
minimumReleaseAge: 1440

0 commit comments

Comments
 (0)