Skip to content

Commit 9950bc2

Browse files
authored
Fix lock file (#986)
1 parent 172305d commit 9950bc2

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

examples/src/drive-thru/drivethru_agent.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,7 @@ export default defineAgent({
403403
});
404404

405405
// Only run CLI when executed directly, not when imported for testing
406+
// eslint-disable-next-line turbo/no-undeclared-env-vars
406407
if (process.env.VITEST === undefined) {
407408
cli.runApp(new WorkerOptions({ agent: fileURLToPath(import.meta.url) }));
408409
}

examples/src/frontdesk/frontdesk_agent.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ export default defineAgent({
248248
});
249249

250250
// Only run CLI when executed directly, not when imported for testing
251+
// eslint-disable-next-line turbo/no-undeclared-env-vars
251252
if (process.env.VITEST === undefined) {
252253
cli.runApp(new WorkerOptions({ agent: fileURLToPath(import.meta.url) }));
253254
}

examples/src/inworld_tts.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export default defineAgent({
8080
});
8181

8282
// timestamp handling (if enabled)
83+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
8384
session.tts!.on('alignment' as any, (data: any) => {
8485
if (data.wordAlignment) {
8586
const { words, starts, ends } = data.wordAlignment;

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)