Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubox76 committed Apr 4, 2024
1 parent c95b9fe commit 6bf5162
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/release/utils/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ export async function publishInCI(
continue;
}
} catch (e) {
if (version !== "0.0.1") {
if (version !== '0.0.1') {
// 404 from NPM indicates the package doesn't exist there.
console.log(`Skipping pkg: ${pkg} - it has never been published to NPM.`);
console.log(
`Skipping pkg: ${pkg} - it has never been published to NPM.`
);
continue;
}
}
Expand Down

0 comments on commit 6bf5162

Please sign in to comment.