Skip to content

Commit 8c09f4a

Browse files
authored
Chore/bump and test (#216)
1 parent 0481eab commit 8c09f4a

File tree

5 files changed

+40
-2
lines changed

5 files changed

+40
-2
lines changed

.env.example

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
OPENAI_API_KEY="xxx"
2+
ANTHROPIC_API_KEY="xxx"
3+
4+
APPLE_CODESIGN_IDENTITY="Developer ID Application: PostHog Inc. (xxx)"
5+
6+
APPLE_APP_SPECIFIC_PASSWORD="xxxx-xxx-xxx-xxx"
7+
APPLE_TEAM_ID="xxx"
8+
9+
APPLE_CODESIGN_CERT_BASE64="xxx"
10+
APPLE_CODESIGN_CERT_PASSWORD="xxx"
11+
APPLE_CODESIGN_KEYCHAIN_PASSWORD="xxx"
12+
13+
VITE_POSTHOG_API_KEY=xxx
14+
VITE_POSTHOG_API_HOST=xxx
15+
VITE_POSTHOG_UI_HOST=xxx

apps/array/forge.config.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,17 @@ const config: ForgeConfig = {
202202
copyNativeDependency("@parcel/watcher", buildPath);
203203
copyNativeDependency("@parcel/watcher-darwin-arm64", buildPath);
204204
copyNativeDependency("file-icon", buildPath);
205+
// Copy @parcel/watcher's hoisted dependencies
206+
copyNativeDependency("micromatch", buildPath);
207+
copyNativeDependency("is-glob", buildPath);
208+
copyNativeDependency("detect-libc", buildPath);
209+
// Copy transitive dependencies (full chain)
210+
copyNativeDependency("braces", buildPath);
211+
copyNativeDependency("picomatch", buildPath);
212+
copyNativeDependency("is-extglob", buildPath);
213+
copyNativeDependency("fill-range", buildPath);
214+
copyNativeDependency("to-regex-range", buildPath);
215+
copyNativeDependency("is-number", buildPath);
205216
},
206217
},
207218
publishers: [

apps/array/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@posthog/array",
3-
"version": "0.5.0",
3+
"version": "0.7.0",
44
"description": "Array - PostHog desktop task manager",
55
"main": ".vite/build/index.js",
66
"versionHash": "dynamic",
@@ -121,6 +121,9 @@
121121
"chokidar": "^5.0.0",
122122
"cmdk": "^1.1.1",
123123
"date-fns": "^3.3.1",
124+
"detect-libc": "^1.0.3",
125+
"is-glob": "^4.0.3",
126+
"micromatch": "^4.0.5",
124127
"electron-log": "^5.4.3",
125128
"electron-store": "^11.0.0",
126129
"file-icon": "^6.0.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "array-monorepo",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"private": true,
55
"description": "Array monorepo - PostHog desktop task manager and agent",
66
"engines": {

pnpm-lock.yaml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)