We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92c651f commit cc3146cCopy full SHA for cc3146c
packages/firestore/rollup.shared.js
@@ -96,11 +96,9 @@ exports.resolveNodeExterns = function (id) {
96
97
/** Breaks the build if there is a circular dependency. */
98
exports.onwarn = function (warning, defaultWarn) {
99
- // TODO(pipeline) re-enable and fix circular dependencies after the pipeline exploration phase
100
- // if (warning.code === 'CIRCULAR_DEPENDENCY') {
101
- // console.log(JSON.stringify(warning));
102
- // throw new Error(warning);
103
- // }
+ if (warning.code === 'CIRCULAR_DEPENDENCY') {
+ throw new Error(warning);
+ }
104
defaultWarn(warning);
105
};
106
0 commit comments