From c92bac65eb785f7b366253ad8a442c4fc23d6d84 Mon Sep 17 00:00:00 2001 From: DavidJones Date: Wed, 25 Oct 2023 01:08:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(custom):=20=E5=85=BC=E5=AE=B9=20=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../crx-manifest-webpack-plugin/__example__/webpack.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@webpack-plugin/crx-manifest-webpack-plugin/__example__/webpack.config.ts b/@webpack-plugin/crx-manifest-webpack-plugin/__example__/webpack.config.ts index 232ad134..6aa5b00d 100644 --- a/@webpack-plugin/crx-manifest-webpack-plugin/__example__/webpack.config.ts +++ b/@webpack-plugin/crx-manifest-webpack-plugin/__example__/webpack.config.ts @@ -26,7 +26,7 @@ const CONFIG: Configuration = { ok(`The following is the content of manifest.json.`, { verbose: false }) // eslint-disable-next-line no-console - console.dir(JSON.parse(files[manifest]), { depth: null, colors: true }) + console.dir(JSON.parse(files[manifest].toString()), { depth: null, colors: true }) warn('Please compare the contents above and ./manifest.json.', { verbose: false }) }) },