-
Notifications
You must be signed in to change notification settings - Fork 926
API Extractor support for Firestore Exp and Lite #4095
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 15 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
1e359b5
Script to Prune .dts files (with tests)
schmidt-sebastian 8a081c3
Merge branch 'master' into mrschmidt/standalonescript
schmidt-sebastian f3f24da
API Extractor for Firestore
schmidt-sebastian 1cb26d3
Add API Reports
schmidt-sebastian a782916
Ignore missing release and @Hideconstructor warning
schmidt-sebastian db711f5
s/return/returns
schmidt-sebastian 8161362
Add Hyphen
schmidt-sebastian c1ac88d
Update API Extractor configuration
schmidt-sebastian 6ba806e
Add Lite configuration
schmidt-sebastian 0b6a18e
Lint fix
schmidt-sebastian 299d267
Fix parenthesis
schmidt-sebastian 1f2ac1f
HTML escape
schmidt-sebastian 6d5b216
Ignore ae-unresolved-link
schmidt-sebastian ef6d871
Add ESLint type
schmidt-sebastian dbfaba7
yarn.lock
schmidt-sebastian c28b5f2
Misc fixes
schmidt-sebastian fcd5d3c
Move to /repo-scripts
schmidt-sebastian f4d4952
Update package.json
schmidt-sebastian 9a286f4
Add TODO/test
schmidt-sebastian d7909d5
Update yarn.lock
schmidt-sebastian 3f8bbf2
Fix JSON
schmidt-sebastian 821a6da
Merge
schmidt-sebastian 873b9ea
Merge
schmidt-sebastian d98ca33
Merge branch 'master' into mrschmidt/standalonescript
schmidt-sebastian 6eaa0ac
Merge
schmidt-sebastian 4911012
Cleanup
schmidt-sebastian c1d89d0
WIP
schmidt-sebastian 3c2dd19
Fix yarn.lock
schmidt-sebastian d94c544
Merge branch 'mrschmidt/standalonescript' into mrschmidt/apiextract
schmidt-sebastian 89a574b
Update package.json
schmidt-sebastian 5fa16b2
Merge
schmidt-sebastian decc324
Prettier/Cleanup
schmidt-sebastian 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"extends": "../../../config/api-extractor.json", | ||
"mainEntryPointFilePath": "../dist/firestore/exp/index.d.ts", | ||
"dtsRollup": { | ||
"enabled": true, | ||
"publicTrimmedFilePath": "../dist/exp/private.d.ts" | ||
}, | ||
"messages": { | ||
"extractorMessageReporting": { | ||
"ae-missing-release-tag": { | ||
"logLevel": "none" | ||
}, | ||
"ae-unresolved-link": { | ||
"logLevel": "none" | ||
} | ||
}, | ||
"tsdocMessageReporting": { | ||
"tsdoc-undefined-tag": { | ||
"logLevel": "none" | ||
} | ||
} | ||
} | ||
} |
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,11 +1,11 @@ | ||
{ | ||
"name": "@firebase/firestore/exp", | ||
"name": "@firebase/firestore-exp", | ||
"description": "A tree-shakeable version of the Firestore SDK", | ||
"main": "../dist/exp/index.node.umd.js", | ||
"main-esm": "../dist/exp/index.node.esm2017.js", | ||
"module": "../dist/exp/index.browser.esm2017.js", | ||
"browser": "../dist/exp/index.browser.esm2017.js", | ||
"react-native": "../dist/exp/index.rn.esm2017.js", | ||
"typings": "../exp-types/index.d.ts", | ||
"typings": "../dist/exp/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
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.
Do you not want to get warned about APIs that don't have documentation?
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.
This hides the warning for
@hideconstructor
.