Skip to content

Commit 472f70e

Browse files
committed
Don't build evals part 2
1 parent 67eecbe commit 472f70e

File tree

2 files changed

+2
-25
lines changed

2 files changed

+2
-25
lines changed

evals/project.json

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,10 @@
44
"sourceRoot": ".",
55
"projectType": "application",
66
"targets": {
7-
"build": {
8-
"executor": "nx:run-commands",
9-
"options": {
10-
"command": "tsc --build",
11-
"cwd": "evals"
12-
},
13-
"outputs": ["{projectRoot}/dist"],
14-
"dependsOn": [
15-
"^build",
16-
"clean"
17-
]
18-
},
197
"run-eval-set": {
208
"executor": "nx:run-commands",
219
"options": {
22-
"command": "bun run dist/run-eval-set.js",
23-
"cwd": "evals"
24-
},
25-
"dependsOn": [
26-
"build"
27-
]
28-
},
29-
"clean": {
30-
"executor": "nx:run-commands",
31-
"options": {
32-
"command": "rm -rf dist",
10+
"command": "bun run git-evals/run-eval-set.ts",
3311
"cwd": "evals"
3412
}
3513
}

npm-app/src/terminal/base.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { ChildProcessWithoutNullStreams, execSync, spawn } from 'child_process'
22
import * as os from 'os'
33
import path from 'path'
44

5-
import type { IPty } from '@homebridge/node-pty-prebuilt-multiarch'
65
import { AnalyticsEvent } from 'common/constants/analytics-events'
76
import { buildArray } from 'common/util/array'
87
import {
@@ -39,7 +38,7 @@ type PersistentProcess =
3938
| {
4039
type: 'pty'
4140
shell: 'pty'
42-
pty: IPty
41+
pty: any
4342
timerId: NodeJS.Timeout | null
4443
// Add persistent output buffer for manager mode
4544
globalOutputBuffer: string

0 commit comments

Comments
 (0)