From c2f2b611e8893b04904907e8255cd6a4b28dddf9 Mon Sep 17 00:00:00 2001 From: RA-arnost-dudek <115218822+RA-arnost-dudek@users.noreply.github.com> Date: Fri, 14 Oct 2022 18:45:48 +0200 Subject: [PATCH] fix: typo in esbuild-check.js (#1806) --- esbuild-check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esbuild-check.js b/esbuild-check.js index 8f02bab1b0..5ce65b5976 100644 --- a/esbuild-check.js +++ b/esbuild-check.js @@ -1,7 +1,7 @@ // If the platform does not support the native variant of esbuild, this will crash. // This script can then be spawned by the CLI to determine if native usage is supported. require('esbuild') - .formatMessages([], { kind: 'error ' }) + .formatMessages([], { kind: 'error' }) .then( () => {}, () => {}