Skip to content

Commit 8b70fc5

Browse files
authored
Set package to public (#8125)
1 parent bf7d2d8 commit 8b70fc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vertexai/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@firebase/vertexai",
33
"version": "0.0.1",
4-
"private": true,
54
"description": "A template package for new firebase packages",
65
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
76
"engines": {

scripts/release/utils/publish.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ export async function publishInCI(
7575
continue;
7676
}
7777
} catch (e) {
78-
if (version !== '0.0.1') {
78+
const versionParts = version.split('-');
79+
if (versionParts[0] !== '0.0.1') {
7980
// 404 from NPM indicates the package doesn't exist there.
8081
console.log(
8182
`Skipping pkg: ${pkg} - it has never been published to NPM.`

0 commit comments

Comments
 (0)