diff --git a/.github/workflows/release_oxlint.yml b/.github/workflows/release_oxlint.yml index 4b16ec207af9b..2c3f70f702e10 100644 --- a/.github/workflows/release_oxlint.yml +++ b/.github/workflows/release_oxlint.yml @@ -117,7 +117,7 @@ jobs: - name: Build oxlint working-directory: apps/oxlint - run: ${{ matrix.build-oxlint }} --features allocator + run: ${{ matrix.build-oxlint }} shell: bash env: TARGET_CC: clang # for mimalloc diff --git a/apps/oxlint/package.json b/apps/oxlint/package.json index edfca1a3c0137..56a5160f15ab6 100644 --- a/apps/oxlint/package.json +++ b/apps/oxlint/package.json @@ -10,7 +10,7 @@ "build-test": "pnpm run build-napi-test && pnpm run build-js", "build-napi": "napi build --esm --platform --js ./bindings.js --dts ./bindings.d.ts --output-dir src-js --no-dts-cache", "build-napi-test": "pnpm run build-napi --features force_test_reporter", - "build-napi-release": "pnpm run build-napi --release", + "build-napi-release": "pnpm run build-napi --release --features allocator", "build-js": "node scripts/build.js", "test": "tsc && vitest --dir ./test run" },