Skip to content

Commit d8bc32d

Browse files
authored
merge dev to main (v2.15.0) (#2132)
2 parents e835599 + c5435ea commit d8bc32d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

packages/server/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"./nuxt": "./nuxt/index.js",
7676
"./nestjs": "./nestjs/index.js",
7777
"./hono": "./hono/index.js",
78+
"./elysia": "./elysia/index.js",
7879
"./types": "./types.js"
7980
}
8081
}

packages/testtools/src/schema.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@ export function run(cmd: string, env?: Record<string, string>, cwd?: string) {
5252
});
5353
} catch (err) {
5454
console.error('Command failed:', cmd, err);
55+
try {
56+
execSync(cmd, {
57+
stdio: 'inherit',
58+
encoding: 'utf-8',
59+
env: { ...process.env, DO_NOT_TRACK: '1', ...env },
60+
cwd,
61+
});
62+
} catch {
63+
// noop
64+
}
5565
throw err;
5666
}
5767
}

0 commit comments

Comments
 (0)