mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
import {ExampleZipper} from './exampleZipper.mjs';
|
|
|
|
const argv = process.argv.slice(2);
|
|
if (argv.length !== 2) {
|
|
console.error('Usage: node generateZip.mjs [example-path] [output-path]');
|
|
process.exit(1);
|
|
}
|
|
|
|
const EXAMPLE_PATH = argv[0];
|
|
const OUTPUT_PATH = argv[1];
|
|
|
|
new ExampleZipper(EXAMPLE_PATH, OUTPUT_PATH);
|