Skip to content

Commit d4da686

Browse files
chore: minor improvements
1 parent 4f0d268 commit d4da686

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

bun.lock

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,28 @@
1010
},
1111
"devDependencies": {
1212
"@biomejs/biome": "^1.9.4",
13-
"@hono/swagger-ui": "^0.5.0",
13+
"@hono/swagger-ui": "^0.5.1",
1414
"@hono/zod-openapi": "^0.18.4",
15+
"@jitl/quickjs-ng-wasmfile-debug-sync": "^0.31.0",
1516
"@jitl/quickjs-ng-wasmfile-release-asyncify": "^0.31.0",
1617
"@jitl/quickjs-ng-wasmfile-release-sync": "^0.31.0",
1718
"@types/autocannon": "^7.12.6",
18-
"@types/bun": "^1.2.4",
19-
"@types/node": "^22.13.5",
19+
"@types/bun": "^1.2.11",
20+
"@types/node": "^22.15.3",
2021
"autocannon": "^8.0.0",
2122
"chai": "^5.2.0",
2223
"git-cliff": "^2.8.0",
23-
"hono": "^4.7.2",
24-
"knip": "^5.45.0",
24+
"hono": "^4.7.8",
25+
"knip": "^5.51.0",
2526
"np": "^10.2.0",
26-
"openai": "^4.85.4",
27+
"openai": "^4.96.0",
2728
"poolifier-web-worker": "^0.4.31",
2829
"tshy": "^3.0.2",
2930
"typedoc": "^0.27.9",
30-
"typedoc-plugin-markdown": "^4.4.2",
31-
"typescript": "^5.7.3",
32-
"vitepress": "^2.0.0-alpha.3",
33-
"vitepress-sidebar": "^1.31.0",
31+
"typedoc-plugin-markdown": "^4.6.3",
32+
"typescript": "^5.8.3",
33+
"vitepress": "^2.0.0-alpha.5",
34+
"vitepress-sidebar": "^1.31.1",
3435
"vue": "^3.5.13",
3536
},
3637
"peerDependencies": {
@@ -210,6 +211,8 @@
210211

211212
"@jitl/quickjs-ffi-types": ["@jitl/[email protected]", "", {}, "sha512-1yrgvXlmXH2oNj3eFTrkwacGJbmM0crwipA3ohCrjv52gBeDaD7PsTvFYinlAnqU8iPME3LGP437yk05a2oejw=="],
212213

214+
"@jitl/quickjs-ng-wasmfile-debug-sync": ["@jitl/[email protected]", "", { "dependencies": { "@jitl/quickjs-ffi-types": "0.31.0" } }, "sha512-MsZhYhJXPj3uzcaixmPGIsgWP8GYBzqMkfLo2opBOFFJPAyu8bLHm4oybwrmNDe3xaie2jQ7E6BqcWCtP0QjZw=="],
215+
213216
"@jitl/quickjs-ng-wasmfile-release-asyncify": ["@jitl/[email protected]", "", { "dependencies": { "@jitl/quickjs-ffi-types": "0.31.0" } }, "sha512-g/yFBenancWcbDqMMlJJljZBXzFBoqxQhvDoElwTfLNbfLSn+dYXUzHzs36DkX/OEWRWnnu0lS0KSfQ8/wl+QQ=="],
214217

215218
"@jitl/quickjs-ng-wasmfile-release-sync": ["@jitl/[email protected]", "", { "dependencies": { "@jitl/quickjs-ffi-types": "0.31.0" } }, "sha512-D99G2Re2e4GmJM0NZIALmp0kwb1upUYbhlA6bTdwSSzMBovh+Elagfe2bGgR9pUsqeH/hDD913TRERQi077iqA=="],

loadtest.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const promiseTestBody = `const fn = async ()=> {
99
1010
export default await fn()`
1111

12+
/*
1213
const fetchTestBody = `import * as path from 'node:path'
1314
import { writeFileSync, readFileSync } from 'node:fs'
1415
@@ -30,6 +31,7 @@ const fn = async ()=>{
3031
}
3132
3233
export default await fn()`
34+
*/
3335

3436
autocannon(
3537
{

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"build": "bun run build:vendor && tshy && bun run build:copy",
3838
"build:vendor": "bun vendor.ts",
3939
"build:copy": "cp -R ./src/modules/build/ ./dist/esm/modules/build && cp -R ./src/modules/build/ ./dist/commonjs/modules/build",
40-
"test": "bun test",
40+
"test": "tsc --noEmit && bun test",
4141
"test:dev": "bun test --watch",
4242
"lint": "bunx @biomejs/biome check",
4343
"lint:fix": "bunx @biomejs/biome check --write",
@@ -75,6 +75,7 @@
7575
"@biomejs/biome": "^1.9.4",
7676
"@hono/swagger-ui": "^0.5.1",
7777
"@hono/zod-openapi": "^0.18.4",
78+
"@jitl/quickjs-ng-wasmfile-debug-sync": "^0.31.0",
7879
"@jitl/quickjs-ng-wasmfile-release-asyncify": "^0.31.0",
7980
"@jitl/quickjs-ng-wasmfile-release-sync": "^0.31.0",
8081
"@types/autocannon": "^7.12.6",

vendor/testrunner/testRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ globalThis.beforeAll = beforeAll
287287
globalThis.afterAll = afterAll
288288
globalThis.beforeEach = beforeEach
289289
globalThis.afterEach = afterEach
290-
globalThis.runTests = runTests
290+
;(globalThis as any).runTests = runTests
291291
globalThis.expect = expect
292292

293293
export { describe, it, beforeAll, afterAll, beforeEach, afterEach, runTests, expect }

0 commit comments

Comments
 (0)