From 665a8f8cb92414aaab49613ad05ac36d010a6857 Mon Sep 17 00:00:00 2001 From: Dru Hill Date: Thu, 4 Jan 2024 10:40:29 +0000 Subject: [PATCH] chore: omit header from json files --- scripts/postbuild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/postbuild.js b/scripts/postbuild.js index 15acfaaf..a8b64eb7 100644 --- a/scripts/postbuild.js +++ b/scripts/postbuild.js @@ -90,7 +90,7 @@ function addEntryFile () { } function addFileHeader () { - const files = glob('dist/**/*.@(css|js|json|ts|d.ts|scss|less)') + const files = glob('dist/**/*.@(css|js|ts|d.ts|scss|less)') files.forEach((file) => { try { const filePath = resolve(__dirname, '../', file)