Skip to content

Commit 25b2cca

Browse files
yamcodesCopilot
andauthored
fix: remove unused catch variable in artifact verification (#1839)
## Summary - remove the unused `error` binding from `scripts/verify-artifacts.js` - preserve the existing size-limit failure handling Fixes the pre-existing Biome autofix/lint failure identified in #1833. ## Validation - `npx --yes @biomejs/biome@2.5.11 check scripts/verify-artifacts.js` - `node --check scripts/verify-artifacts.js` - `git diff --check` Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent 203f191 commit 25b2cca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/verify-artifacts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ console.log("\n📦 Running size-limit validation...");
7373
try {
7474
execSync("pnpm --filter arkenv run size", { cwd: rootDir, stdio: "inherit" });
7575
console.log("✅ Passed: size-limit validation");
76-
} catch (error) {
76+
} catch {
7777
console.error("❌ Error: size-limit validation failed");
7878
process.exit(1);
7979
}

0 commit comments

Comments
 (0)