From 17237f4e82001682235a7431fd677a82c7993b10 Mon Sep 17 00:00:00 2001 From: Shuo Wu Date: Wed, 23 Feb 2022 14:23:37 -0500 Subject: [PATCH] lint --- scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index 2104995c2..e4cb2ebb7 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -90,7 +90,7 @@ function removeBuildDir(val) { } // Remove "build/" from the entrypoint paths. -['main', 'module', 'browser', 'types', "exports"].forEach(function(key) { +['main', 'module', 'browser', 'types', 'exports'].forEach(function(key) { packageJSON[key] = removeBuildDir(packageJSON[key]); });