nebula/scripts/make-metadata.js

11 lines
342 B
JavaScript
Raw Normal View History

2024-07-17 15:23:16 -04:00
//
// This script runs the Custom Elements Manifest analyzer to generate custom-elements.json
//
import { execSync } from 'child_process';
import commandLineArgs from 'command-line-args';
const { outdir } = commandLineArgs({ name: 'outdir', type: String });
execSync(`cem analyze --litelement --outdir "${outdir}"`, { stdio: 'inherit' });