-
Notifications
You must be signed in to change notification settings - Fork 948
Firestore exp release script #3444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
4b7cbe4
Add ReactNative and Browser builds
schmidt-sebastian 386834e
prepare script for firestore exp release
Feiyang1 97f8b10
add firestore to the exp release script
Feiyang1 95d712f
add exp release rollup config
Feiyang1 be496cd
misc changes
Feiyang1 00bd880
fix typo
Feiyang1 afe1ca6
add module field
Feiyang1 b127051
handle peerDeps
Feiyang1 2850473
fix typo
Feiyang1 96ba485
replace app-types-exp with app-types
Feiyang1 0527ad7
fix typo
Feiyang1 1accb1f
fix typo
Feiyang1 eef8fcd
remove unused fields
Feiyang1 5837dab
testing only. remove before making PR
Feiyang1 367ed55
Merge branch 'master' into fei-firestore-exp-release
Feiyang1 15a5a64
fix merge
Feiyang1 a46167d
fix issue
Feiyang1 6cd903f
Revert "testing only. remove before making PR"
Feiyang1 bf9a76e
revert dev changes
Feiyang1 d8685d1
remove unnecessary rollup config
Feiyang1 b0721d9
update script
Feiyang1 28c4af4
for test
Feiyang1 dbe7f3e
add firestore to firebase-exp
Feiyang1 6331bb2
use existing package as placeholder
Feiyang1 b3f57f4
add firestore to firebase-exp
Feiyang1 1984d1c
build firestore first
Feiyang1 5d31d16
update release config
Feiyang1 f83224c
use script name
Feiyang1 c630d5e
get script name correctly
Feiyang1 a5a430c
use componentName
Feiyang1 3ede939
show output of build
Feiyang1 b91f3aa
fix bug
Feiyang1 c9c031e
make it better
Feiyang1 a01c72f
add missing script
Feiyang1 6ee8be7
fix
Feiyang1 4253ebd
add missing script
Feiyang1 6ca3885
fix build issue
Feiyang1 e1b2164
change order
Feiyang1 13226ca
revert dev change
Feiyang1 dff2ce4
use umd build for main
Feiyang1 8a49d6c
update comment
Feiyang1 a8c50db
add comments
Feiyang1 4c9c285
address comments
Feiyang1 19fd38e
Merge branch 'master' into fei-firestore-exp-release
Feiyang1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* @license | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
export * from '@firebase/firestore/lite'; |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "firebase-exp/firestore/lite", | ||
"main": "dist/index.cjs.js", | ||
"browser": "dist/index.esm.js", | ||
"module": "dist/index.esm.js", | ||
"typings": "dist/firestore/lite/index.d.ts" | ||
} |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "firebase-exp/firestore", | ||
"main": "dist/index.cjs.js", | ||
"browser": "dist/index.esm.js", | ||
"module": "dist/index.esm.js", | ||
"typings": "dist/firestore/index.d.ts" | ||
} |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,8 +1,10 @@ | ||
{ | ||
"name": "@firebase/firestore/lite", | ||
"description": "A lite version of the Firestore SDK", | ||
"main": "../dist/lite/index.node.umd.js", | ||
"main": "../dist/lite/index.node.esm2017.js", | ||
"module": "../dist/lite/index.browser.esm2017.js", | ||
"browser": "../dist/lite/index.browser.esm2017.js", | ||
"react-native": "../dist/lite/index.rn.esm2017.js", | ||
"typings": "../lite-types/index.d.ts", | ||
"private": true | ||
} |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these values used at all? Looks like the release script replaces them. Might make sense to use dummy values if that is indeed the case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. They are used when you do
import {...} from 'firebase/firestore/lite'