-
Notifications
You must be signed in to change notification settings - Fork 910
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use hash versions to publish exp packages (#2933)
* use sha version instead of semver * make firebase-exp private * Publish firebase@exp 0.800.1 * bump umbrella package version only * Publish firebase@exp 0.800.2 * restore package json * change prepare to use build:release * bump version correctly. * fix function name * [AUTOMATED]: Prettier Code Styling * update dep versions * correct typo * revert changes for debugging
- Loading branch information
Showing
4 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@firebase/app-exp", | ||
"version": "0.800.0", | ||
"version": "0.0.800", | ||
"private": true, | ||
"description": "FirebaseApp", | ||
"author": "Firebase <[email protected]> (https://firebase.google.com/)", | ||
|
@@ -29,7 +29,7 @@ | |
"build:doc": "yarn build && yarn doc" | ||
}, | ||
"dependencies": { | ||
"@firebase/app-types-exp": "0.800.0", | ||
"@firebase/app-types-exp": "0.0.800", | ||
"@firebase/util": "0.2.44", | ||
"@firebase/logger": "0.2.1", | ||
"@firebase/component": "0.1.9", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@firebase/app-types-exp", | ||
"version": "0.800.0", | ||
"version": "0.0.800", | ||
"private": true, | ||
"description": "@firebase/app Types", | ||
"author": "Firebase <[email protected]> (https://firebase.google.com/)", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"name": "firebase-exp", | ||
"version": "0.800.0", | ||
"private": true, | ||
"description": "Firebase JavaScript library for web and Node.js", | ||
"author": "Firebase <[email protected]> (https://firebase.google.com/)", | ||
"license": "Apache-2.0", | ||
|
@@ -29,10 +30,10 @@ | |
"build": "rollup -c && gulp firebase-js", | ||
"build:release": "rollup -c rollup.config.release.js && gulp firebase-js", | ||
"dev": "rollup -c -w", | ||
"prepare": "yarn build" | ||
"prepare": "yarn build:release" | ||
}, | ||
"dependencies": { | ||
"@firebase/app-exp": "0.800.0" | ||
"@firebase/app-exp": "0.0.800" | ||
}, | ||
"devDependencies": { | ||
"rollup": "1.28.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters