From 13fc31b48043ad6864158802f1cf1002ab97094c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20P=C3=B6hls?= Date: Wed, 4 Sep 2024 21:42:31 +0200 Subject: [PATCH 1/2] refine wording --- src/bundler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundler.ts b/src/bundler.ts index fd932ec..010426d 100644 --- a/src/bundler.ts +++ b/src/bundler.ts @@ -190,7 +190,7 @@ export class Bundler { `) await fs.writeFile(aceFileLocation, aceFileContent) - this.#logger.info('rewrited ace file', { suffix: this.#getRelativeName(aceFileLocation) }) + this.#logger.info('copied ace file', { suffix: this.#getRelativeName(aceFileLocation) }) } /** From e91b3f021531d1a350edadc3226cd1f169af9f62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20P=C3=B6hls?= Date: Thu, 5 Sep 2024 11:00:21 +0200 Subject: [PATCH 2/2] refine log message --- src/bundler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundler.ts b/src/bundler.ts index 010426d..bd28458 100644 --- a/src/bundler.ts +++ b/src/bundler.ts @@ -190,7 +190,7 @@ export class Bundler { `) await fs.writeFile(aceFileLocation, aceFileContent) - this.#logger.info('copied ace file', { suffix: this.#getRelativeName(aceFileLocation) }) + this.#logger.info('created ace file', { suffix: this.#getRelativeName(aceFileLocation) }) } /**