Skip to content

Commit 3d0cd6f

Browse files
authored
Fix some build issues (#4382)
* Fix builds * Create honest-rats-deny.md
1 parent ba7d589 commit 3d0cd6f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.changeset/honest-rats-deny.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/firestore": patch
3+
---
4+
5+
Fix the path to the react native build for the Firestore memory build

packages/firestore/rollup.config.rn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default [
6060
bundle: 'index.bundle.ts'
6161
},
6262
output: {
63-
dir: 'dist/rn',
63+
dir: 'dist/memory/rn',
6464
format: 'es',
6565
sourcemap: true
6666
},

packages/storage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"scripts": {
1515
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
1616
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
17-
"build": "rollup -c rollup.config.compat.js",
17+
"build": "rollup -c rollup.config.compat.js && yarn build:exp",
1818
"build:exp": "rollup -c rollup.config.exp.js ; yarn api-report",
1919
"build:deps": "lerna run --scope @firebase/storage --include-dependencies build",
2020
"dev": "rollup -c -w",

0 commit comments

Comments
 (0)