Skip to content

Commit c2bbd5b

Browse files
authored
Add app to component list (#1719)
Add app to master list of components in `package.json`
1 parent 34ae402 commit c2bbd5b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/firebase/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
},
5959
"typings": "index.d.ts",
6060
"components": [
61+
"app",
6162
"auth",
6263
"database",
6364
"firestore",

packages/firebase/rollup.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ const appBuilds = [
7373
];
7474

7575
const componentBuilds = pkg.components
76+
// The "app" component is treated differently because it doesn't depend on itself.
77+
.filter(component => component !== 'app')
7678
.map(component => {
7779
const pkg = require(`./${component}/package.json`);
7880
return [

0 commit comments

Comments
 (0)