Skip to content

Commit 09276a7

Browse files
Prettier
1 parent df0b87c commit 09276a7

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

packages/firestore/rollup.config.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ const es5Builds = [
133133
{
134134
input: 'index.node.memory.ts',
135135
output: [
136-
{ file: path.resolve('./memory', memoryPkg.main), format: 'cjs', sourcemap: true }
136+
{
137+
file: path.resolve('./memory', memoryPkg.main),
138+
format: 'cjs',
139+
sourcemap: true
140+
}
137141
],
138142
plugins: nodeBuildPlugins,
139143
external: resolveMemoryExterns
@@ -157,7 +161,11 @@ const es5Builds = [
157161
},
158162
{
159163
input: 'index.memory.ts',
160-
output: { file: path.resolve('./memory', memoryPkg.module), format: 'es', sourcemap: true },
164+
output: {
165+
file: path.resolve('./memory', memoryPkg.module),
166+
format: 'es',
167+
sourcemap: true
168+
},
161169
plugins: [
162170
typescriptPlugin({
163171
typescript,

packages/firestore/src/core/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export type MutationBatchState = 'pending' | 'acknowledged' | 'rejected';
3838
* primarily used by the View / EventManager code to change their behavior while
3939
* offline (e.g. get() calls shouldn't wait for data from the server and
4040
* snapshot events should set metadata.isFromCache=true).
41-
*
41+
*
4242
* The string values should not be changed since they are persisted in
4343
* WebStorage.
4444
*/

0 commit comments

Comments
 (0)