File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages-exp/firebase-exp Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " firebase-exp" ,
3
- "version" : " 0.900.20 " ,
3
+ "version" : " 9.0.0-beta.0 " ,
4
4
"private" : true ,
5
5
"description" : " Firebase JavaScript library for web and Node.js" ,
6
6
"author" :
" Firebase <[email protected] > (https://firebase.google.com/)" ,
Original file line number Diff line number Diff line change @@ -343,9 +343,9 @@ async function getNewVersions(packagePaths: string[]) {
343
343
for ( const path of packagePaths ) {
344
344
const { version, name } = await readPackageJson ( path ) ;
345
345
346
- // increment firebase-exp's patch version
346
+ // increment firebase-exp as a v9 prerelease, e.g. 9.0.0-beta.0 -> 9.0.0-beta.1
347
347
if ( name === FIREBASE_UMBRELLA_PACKAGE_NAME ) {
348
- const nextVersion = inc ( version , 'patch ' ) ;
348
+ const nextVersion = inc ( version , 'prerelease ' ) ;
349
349
versions . set ( name , nextVersion ) ;
350
350
} else {
351
351
// create individual packages version
You can’t perform that action at this time.
0 commit comments