Skip to content

Commit d705208

Browse files
committed
Update CDN and g3 builds of Firestore to include Pipelines in the firebase-firestore.js file
1 parent 5fb6ebe commit d705208

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

packages/firebase/firestore/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616
*/
1717

1818
export * from '@firebase/firestore';
19+
20+
import * as pipelines from '@firebase/firestore/pipelines';
21+
export { pipelines };

packages/firebase/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,9 +476,7 @@
476476
"auth/web-extension",
477477
"functions",
478478
"firestore",
479-
"firestore/pipelines",
480479
"firestore/lite",
481-
"firestore/lite/pipelines",
482480
"installations",
483481
"storage",
484482
"performance",

packages/firebase/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const cdnBuilds = [
149149
.map(component => {
150150
// It is needed for handling sub modules, for example firestore/lite which should produce firebase-firestore-lite.js
151151
// Otherwise, we will create a directory with '/' in the name.
152-
const componentName = component.replace('/', '-');
152+
const componentName = component.replaceAll('/', '-');
153153

154154
return {
155155
input: `${component}/index.ts`,

0 commit comments

Comments
 (0)