From 7d66a031a3a7ae62958fecd689614878e3ca0c25 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Sun, 7 Mar 2021 08:52:55 -0500 Subject: [PATCH] add comment --- scripts/build.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.cjs b/scripts/build.cjs index 34e91ee5..22fe2efb 100644 --- a/scripts/build.cjs +++ b/scripts/build.cjs @@ -22,7 +22,7 @@ const options = commandLineArgs({ }); execSync(`rm -rf ./dist`, { stdio: 'inherit' }); -execSync('tsc', { stdio: 'inherit'}); +execSync('tsc', { stdio: 'inherit' }); // for type declarations execSync('node scripts/make-metadata.cjs', { stdio: 'inherit' }); execSync('node scripts/make-icons.cjs', { stdio: 'inherit' });