mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-22 20:45:55 +08:00
Summary: When reporting error inside `IdentityStore._fetchIdentity`, we would pass null as the `extra` parameter for `reportError`. This would cause us to try to assign something to null and throw an error while reporting the error. (Even though `extra` has a default value of `{}` (see declaration of `NylasEnv.reportError`), passing null will be interpreted as a valid arg and it wont get assigned the default value) Thankfully, the second error /is/ reported to sentry: https://sentry.io/nylas/nylas-mail/issues/230589717/ Test Plan: manual Reviewers: mark, halla, spang, evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D4150 |
||
---|---|---|
.. | ||
client-app | ||
client-sync | ||
isomorphic-core | ||
README.md |
Monorepo Packages
Each folder here is designed to act as its own repository. For development convenience, they are all included here in one monorepo. This allows us to grep across multiple codebases, not use submodules, and keep a unified commit history.
We use Lerna to manage the monorepo and tie
them all together with the main nylas-mail-all/scripts/postinstall.es6
script,
which in turn, calls lerna bootstrap