We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7d2d8 commit 8b70fc5Copy full SHA for 8b70fc5
packages/vertexai/package.json
@@ -1,7 +1,6 @@
1
{
2
"name": "@firebase/vertexai",
3
"version": "0.0.1",
4
- "private": true,
5
"description": "A template package for new firebase packages",
6
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
7
"engines": {
scripts/release/utils/publish.ts
@@ -75,7 +75,8 @@ export async function publishInCI(
75
continue;
76
}
77
} catch (e) {
78
- if (version !== '0.0.1') {
+ const versionParts = version.split('-');
79
+ if (versionParts[0] !== '0.0.1') {
80
// 404 from NPM indicates the package doesn't exist there.
81
console.log(
82
`Skipping pkg: ${pkg} - it has never been published to NPM.`
0 commit comments