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 34ae402 commit c2bbd5bCopy full SHA for c2bbd5b
packages/firebase/package.json
@@ -58,6 +58,7 @@
58
},
59
"typings": "index.d.ts",
60
"components": [
61
+ "app",
62
"auth",
63
"database",
64
"firestore",
packages/firebase/rollup.config.js
@@ -73,6 +73,8 @@ const appBuilds = [
73
];
74
75
const componentBuilds = pkg.components
76
+ // The "app" component is treated differently because it doesn't depend on itself.
77
+ .filter(component => component !== 'app')
78
.map(component => {
79
const pkg = require(`./${component}/package.json`);
80
return [
0 commit comments