-
Notifications
You must be signed in to change notification settings - Fork 928
Separate memory build further. #4143
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
Separate memory build further. #4143
Conversation
We need to verify that the Node build still works
|
@@ -21,4 +21,4 @@ | |||
*/ | |||
|
|||
import '@firebase/firestore/memory'; | |||
import '@firebase/firestore/bundle'; | |||
import '@firebase/firestore/memory-bundle'; |
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.
Can this be @firebase/firestore/memory/bundle
?
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.
It cannot be done gracefully.
The reason is relative paths in packages/firestore/memory-bundle/package.json
are interpreted in different context (in rollup or in Typescript import from packages/firebase/firestore/...) and therefore some of them need to be prefixed ../..
and some of them just ../
, which is confusing.
…tiansSeparateMemoryBuild # Conflicts: # packages/firestore/rollup.config.browser.js # packages/firestore/rollup.config.rn.js
I will merge this into |
No description provided.