diff --git a/scripts/bundleWithCheck.js b/scripts/bundleWithCheck.js index 46e62074c..cdecf5006 100644 --- a/scripts/bundleWithCheck.js +++ b/scripts/bundleWithCheck.js @@ -6,7 +6,6 @@ const commandToRun = 'yarn build && node ./scripts/build.js'; exec(commandToRun, (error, stdout, stderr) => { // Combine stdout and stderr to check the entire output const output = `${stdout}\n${stderr}`; - console.log('aaaa', output); // Check if the output contains the error string of esbuild if (output.includes('[require-resolve-not-external]')) { console.error('Error: A dependency that has to be externalized in esbuild process is found. Please resolve it!');