shoelace/scripts/make-metadata.js

13 wiersze
360 B
JavaScript
Czysty Zwykły widok Historia

2021-02-26 14:09:13 +00:00
//
// This script runs the Custom Elements Manifest analyzer to generate custom-elements.json
2021-02-26 14:09:13 +00:00
//
2021-06-17 21:38:48 +00:00
import chalk from 'chalk';
import mkdirp from 'mkdirp';
import { execSync } from 'child_process';
2021-02-26 14:09:13 +00:00
mkdirp.sync('./dist');
// Run the analyzer
console.log('Generating component metadata');
execSync('cem analyze --litelement --outdir dist', { stdio: 'inherit' });