You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env node |
|
|
|
const colors = require('picocolors'); |
|
const { program } = require('commander'); |
|
const makeProgram = require('../lib/svgo/coa'); |
|
makeProgram(program); |
|
program.parseAsync(process.argv).catch(error => { |
|
console.error(colors.red(error.stack)); |
|
process.exit(1); |
|
});
|
|
|