From 242ab4445b6e990a37978ddfe86e8aa67545d6e2 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:30:40 -0700 Subject: [PATCH 1/2] bump --- .vscode/launch.json | 8 +++----- .vscode/settings.json | 1 + 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3b8dedf000..90bf06b044 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,7 @@ "request": "launch", "name": "bun test [file]", "program": "bun-debug", - "args": ["create", "--help"], + "args": ["test", "${file}"], // The cwd here must be the same as in CI. Or you will cause test failures that only happen in CI. "cwd": "${workspaceFolder}/test", "env": { @@ -307,11 +307,9 @@ "name": "bun install", "program": "bun-debug", "args": ["install"], - "cwd": "${fileDirname}", + "cwd": "/Users/jarred/Build/worky", "console": "internalConsole", - "env": { - "BUN_DEBUG_QUIET_LOGS": "1" - } + "env": {} }, { diff --git a/.vscode/settings.json b/.vscode/settings.json index 425a6d1005..07aa48c533 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -27,6 +27,7 @@ "editor.formatOnSave": true }, "zig.zls.enableInlayHints": false, + "zig.zls.enabled": true, "[jsx]": { "editor.defaultFormatter": "esbenp.prettier-vscode", From 99c92d2b8174758dac3e1f29372a852fedaae118 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 9 Sep 2023 16:13:45 -0700 Subject: [PATCH 2/2] Update index.ts --- src/js/_codegen/index.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/js/_codegen/index.ts b/src/js/_codegen/index.ts index 15fa7defda..4e048b1446 100644 --- a/src/js/_codegen/index.ts +++ b/src/js/_codegen/index.ts @@ -1,12 +1,2 @@ -const [major, minor] = Bun.version - .split("_")[0] - .split(".") - .map(x => parseInt(x)); - -if (minor < 8) { - console.error("Please install bun >= 0.8.0"); - process.exit(1); -} - import "./build-modules"; import "./build-functions";