Skip to content

Commit 2e92f00

Browse files
committed
fix: remove unused error variable in release script
- Resolve ESLint no-unused-vars error
1 parent a0e38df commit 2e92f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release-packages.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async function releasePackages() {
8383
execSync(npmViewCmd, { stdio: 'pipe' });
8484
log.info(`Skipping ${pkg.name} - version ${currentVersion} already published`);
8585
continue;
86-
} catch (error) {
86+
} catch {
8787
// Version not published, continue with publishing
8888
log.info(`${pkg.name}@${currentVersion} not found on npm, proceeding with publish`);
8989
}

0 commit comments

Comments
 (0)