diff --git a/scripts/setup.sh b/scripts/setup.sh index 1a03df68c4..3082554b1c 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -32,7 +32,6 @@ for type in CC CXX; do ) || fail "LLVM ${LLVM_VERSION} is required. Detected $type as '$compiler'" done -has_exec "zig" || fail "'zig' is missing" has_exec "bun" || fail "you need an existing copy of 'bun' in your path to build bun" has_exec "cmake" || fail "'cmake' is missing" has_exec "ninja" || fail "'ninja' is missing" diff --git a/test/regression/issue/07740.test.ts b/test/regression/issue/07740.test.ts index 749931248e..b79132ba9c 100644 --- a/test/regression/issue/07740.test.ts +++ b/test/regression/issue/07740.test.ts @@ -5,10 +5,10 @@ import { tempDirWithFiles } from "harness"; it("duplicate dependencies should warn instead of error", () => { const package_json = JSON.stringify({ devDependencies: { - "empty-package-for-bun-test-runner": "1.0.0" + "empty-package-for-bun-test-runner": "1.0.0", }, dependencies: { - "empty-package-for-bun-test-runner": "1.0.0" + "empty-package-for-bun-test-runner": "1.0.0", }, });