Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque committed Sep 23, 2024
1 parent b491209 commit 51b4060
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/firestore/rollup.config.lite.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const allBuilds = [
typescriptPlugin({
typescript,
compilerOptions: {
allowJs: true,
allowJs: true
},
include: ['dist/lite/*.js']
}),
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging-compat/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const esmBuild = {
},
plugins: [...buildPlugins, emitModulePackageFile()],
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
}
};

const cjsBuild = {
input: 'src/index.ts',
Expand Down
2 changes: 1 addition & 1 deletion packages/performance/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ const cjsBuild = {
...buildPlugins,
replace(generateBuildTargetReplaceConfig('cjs', 5))
]
}
};

export default [esmBuild, cjsBuild];
4 changes: 2 additions & 2 deletions packages/remote-config-compat/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const esmBuild = {
},
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
plugins: [...buildPlugins, emitModulePackageFile()]
}
};

const cjsBuild = {
input: 'src/index.ts',
Expand All @@ -59,6 +59,6 @@ const cjsBuild = {
},
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
plugins: buildPlugins
}
};

export default [esmBuild, cjsBuild];
2 changes: 1 addition & 1 deletion packages/rules-unit-testing/src/impl/test_environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class RulesTestEnvironmentImpl implements RulesTestEnvironment {
return this.withSecurityRulesDisabled(async context => {
const { items } = await context.storage().ref().listAll();
await Promise.all(
items.map((item: { delete: () => any; }) => {
items.map((item: { delete: () => any }) => {
return item.delete();
})
);
Expand Down
4 changes: 2 additions & 2 deletions packages/storage-compat/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const esmBuild = {
},
plugins: [...buildPlugins, emitModulePackageFile()],
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
}
};

const cjsBuild = {
input: './src/index.ts',
Expand All @@ -58,6 +58,6 @@ const cjsBuild = {
},
plugins: buildPlugins,
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`))
}
};

export default [esmBuild, cjsBuild];

0 comments on commit 51b4060

Please sign in to comment.