From 0305147edbe8222baef422d036c08b0f1c5b297a Mon Sep 17 00:00:00 2001 From: Carl-Erik Kopseng Date: Mon, 6 May 2024 14:28:12 +0200 Subject: [PATCH] Remove the ESM bundle in browser check from postbuild This has failed for several years without anyone noticing. Even if the exit status is non-zero, the build does not fail, for whatever reason. So this has no meaning as of now. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 45edaddbe..69798e77c 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "unimported": "unimported .", "pretest-webworker": "npm run build", "prebuild": "rimraf pkg && npm run check-dependencies", - "postbuild": "npm run test-esm-support && npm run check-esm-bundle-runs-in-browser", + "postbuild": "npm run test-esm-support ", "prebuild-docs": "./scripts/update-compatibility.js", "prepublishOnly": "npm run build", "prettier:check": "prettier --check '**/*.{js,css,md}'",