Skip to content

Commit

Permalink
Set package to public (#8125)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubox76 committed Apr 4, 2024
1 parent bf7d2d8 commit 8b70fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/vertexai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@firebase/vertexai",
"version": "0.0.1",
"private": true,
"description": "A template package for new firebase packages",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion scripts/release/utils/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ export async function publishInCI(
continue;
}
} catch (e) {
if (version !== '0.0.1') {
const versionParts = version.split('-');
if (versionParts[0] !== '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.`
Expand Down

0 comments on commit 8b70fc5

Please sign in to comment.