Skip to content

Commit

Permalink
less noise
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Sep 7, 2021
1 parent 053a5e9 commit bfa1499
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/make-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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);
Expand Down
1 change: 0 additions & 1 deletion scripts/make-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`));
2 changes: 0 additions & 2 deletions scripts/make-vscode-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`));

0 comments on commit bfa1499

Please sign in to comment.