Skip to content

Commit 51b4060

Browse files
committed
Run formatter
1 parent b491209 commit 51b4060

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

packages/firestore/rollup.config.lite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const allBuilds = [
8787
typescriptPlugin({
8888
typescript,
8989
compilerOptions: {
90-
allowJs: true,
90+
allowJs: true
9191
},
9292
include: ['dist/lite/*.js']
9393
}),

packages/messaging-compat/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const esmBuild = {
4141
},
4242
plugins: [...buildPlugins, emitModulePackageFile()],
4343
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
44-
}
44+
};
4545

4646
const cjsBuild = {
4747
input: 'src/index.ts',

packages/performance/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ const cjsBuild = {
5757
...buildPlugins,
5858
replace(generateBuildTargetReplaceConfig('cjs', 5))
5959
]
60-
}
60+
};
6161

6262
export default [esmBuild, cjsBuild];

packages/remote-config-compat/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const esmBuild = {
4848
},
4949
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
5050
plugins: [...buildPlugins, emitModulePackageFile()]
51-
}
51+
};
5252

5353
const cjsBuild = {
5454
input: 'src/index.ts',
@@ -59,6 +59,6 @@ const cjsBuild = {
5959
},
6060
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
6161
plugins: buildPlugins
62-
}
62+
};
6363

6464
export default [esmBuild, cjsBuild];

packages/rules-unit-testing/src/impl/test_environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class RulesTestEnvironmentImpl implements RulesTestEnvironment {
126126
return this.withSecurityRulesDisabled(async context => {
127127
const { items } = await context.storage().ref().listAll();
128128
await Promise.all(
129-
items.map((item: { delete: () => any; }) => {
129+
items.map((item: { delete: () => any }) => {
130130
return item.delete();
131131
})
132132
);

packages/storage-compat/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const esmBuild = {
4747
},
4848
plugins: [...buildPlugins, emitModulePackageFile()],
4949
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
50-
}
50+
};
5151

5252
const cjsBuild = {
5353
input: './src/index.ts',
@@ -58,6 +58,6 @@ const cjsBuild = {
5858
},
5959
plugins: buildPlugins,
6060
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
61-
}
61+
};
6262

6363
export default [esmBuild, cjsBuild];

0 commit comments

Comments
 (0)