From bfa1499889fbf85abc1934a21ab2cafaa3d4cd4f Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 7 Sep 2021 13:13:02 -0400 Subject: [PATCH] less noise --- scripts/make-css.js | 4 ++-- scripts/make-metadata.js | 1 - scripts/make-vscode-data.js | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/make-css.js b/scripts/make-css.js index b4894ce51..12648d832 100644 --- a/scripts/make-css.js +++ b/scripts/make-css.js @@ -13,6 +13,8 @@ import stripComments from 'strip-css-comments'; const files = glob.sync('./src/themes/**/*.styles.ts'); const outdir = './dist/themes'; +console.log('Generating stylesheets'); + mkdirp.sync(outdir); try { @@ -33,8 +35,6 @@ try { const outfile = path.join(outdir, filename); await fs.writeFile(outfile, formattedStyles, 'utf8'); }); - - console.log(chalk.cyan(`Successfully generated stylesheets 🎨\n`)); } catch (err) { console.error(chalk.red('Error generating styleseheets!')); console.error(err); diff --git a/scripts/make-metadata.js b/scripts/make-metadata.js index c5ca02ab6..318967ecb 100644 --- a/scripts/make-metadata.js +++ b/scripts/make-metadata.js @@ -10,4 +10,3 @@ mkdirp.sync('./dist'); // Run the analyzer console.log('Generating component metadata'); execSync('cem analyze --litelement --outdir dist', { stdio: 'inherit' }); -console.log(chalk.cyan(`Successfully generated metadata 🏷\n`)); diff --git a/scripts/make-vscode-data.js b/scripts/make-vscode-data.js index f3c42395b..9170f23a4 100644 --- a/scripts/make-vscode-data.js +++ b/scripts/make-vscode-data.js @@ -71,5 +71,3 @@ components.map(component => { }); fs.writeFileSync('./dist/vscode.html-custom-data.json', JSON.stringify(vscode, null, 2), 'utf8'); - -console.log(chalk.cyan(`Successfully generated custom data for VS Code 🔮\n`));