From 0ed2bdbcf012e9994bf4356cbb7c60432425c7dc Mon Sep 17 00:00:00 2001 From: Aramis Sennyey Date: Mon, 6 Oct 2025 15:24:09 -0400 Subject: [PATCH 1/4] fix: allow infrastructure logs to be printed Signed-off-by: Aramis Sennyey --- heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts b/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts index 5324c10e993..be00b3ed376 100644 --- a/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts +++ b/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts @@ -5,7 +5,13 @@ import type { AddressInfo } from 'node:net'; import type * as TWebpack from 'webpack'; import type TWebpackDevServer from 'webpack-dev-server'; -import { AsyncParallelHook, AsyncSeriesBailHook, AsyncSeriesHook, AsyncSeriesWaterfallHook } from 'tapable'; +import { + AsyncParallelHook, + AsyncSeriesBailHook, + AsyncSeriesHook, + AsyncSeriesWaterfallHook, + SyncBailHook +} from 'tapable'; import { CertificateManager, type ICertificate } from '@rushstack/debug-certificate-manager'; import { FileError, InternalError, LegacyAdapters } from '@rushstack/node-core-library'; @@ -342,7 +348,6 @@ export default class Webpack5Plugin implements IHeftTaskPlugin Date: Mon, 6 Oct 2025 15:24:31 -0400 Subject: [PATCH 2/4] Rush change --- ...sennyeya-fix-webpack-logging_2025-10-06-19-24.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json diff --git a/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json b/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json new file mode 100644 index 00000000000..6f6c5b8b2b6 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "Allow infrastructure logs to be printed.", + "type": "patch", + "packageName": "@rushstack/heft-webpack5-plugin" + } + ], + "packageName": "@rushstack/heft-webpack5-plugin", + "email": "aramissennyeydd@users.noreply.github.com" +} \ No newline at end of file From cfd4c8ac95981839fba43e27091e7e4c08759de0 Mon Sep 17 00:00:00 2001 From: Aramis Sennyey Date: Mon, 6 Oct 2025 15:27:43 -0400 Subject: [PATCH 3/4] fix lint Signed-off-by: Aramis Sennyey --- heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts b/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts index be00b3ed376..bf90b467eba 100644 --- a/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts +++ b/heft-plugins/heft-webpack5-plugin/src/Webpack5Plugin.ts @@ -5,13 +5,7 @@ import type { AddressInfo } from 'node:net'; import type * as TWebpack from 'webpack'; import type TWebpackDevServer from 'webpack-dev-server'; -import { - AsyncParallelHook, - AsyncSeriesBailHook, - AsyncSeriesHook, - AsyncSeriesWaterfallHook, - SyncBailHook -} from 'tapable'; +import { AsyncParallelHook, AsyncSeriesBailHook, AsyncSeriesHook, AsyncSeriesWaterfallHook } from 'tapable'; import { CertificateManager, type ICertificate } from '@rushstack/debug-certificate-manager'; import { FileError, InternalError, LegacyAdapters } from '@rushstack/node-core-library'; From 46f150e346df8bfd49061ba5d45cee442671f7b5 Mon Sep 17 00:00:00 2001 From: Ian Clanton-Thuon Date: Tue, 7 Oct 2025 15:42:41 -0700 Subject: [PATCH 4/4] Update common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json --- .../sennyeya-fix-webpack-logging_2025-10-06-19-24.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json b/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json index 6f6c5b8b2b6..1a9b17aa941 100644 --- a/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json +++ b/common/changes/@rushstack/heft-webpack5-plugin/sennyeya-fix-webpack-logging_2025-10-06-19-24.json @@ -2,7 +2,7 @@ "changes": [ { "comment": "Allow infrastructure logs to be printed.", - "type": "patch", + "type": "minor", "packageName": "@rushstack/heft-webpack5-plugin" } ],