Skip to content

Commit 5379499

Browse files
committed
fix: Remove unneeded console.log
1 parent 3412877 commit 5379499

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "functions-differ",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Deploy only the Firebase Functions that changed",
55
"main": "lib/index.js",
66
"bin": "lib/index.js",

src/bundler/esbuild.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export default async function bundleFunctions(
1313
bundlerConfig?: BundlerConfig,
1414
): Promise<Result<BundleResult[], Error>> {
1515
const { concurrency = Object.keys(functions).length, ...config } = bundlerConfig ?? {};
16-
console.log("Bundling with concurrency", concurrency);
17-
1816
const { errors, results } = await PromisePool.for(Object.entries(functions))
1917
.withConcurrency(concurrency)
2018
.process(([fxName, fxPath]) => bundleFunction(fxName, fxPath, config));

0 commit comments

Comments
 (0)