svg-color-linter
Version:
Linting tool to check if SVG files use only colors of a given color palette
16 lines (14 loc) • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.printHelp = void 0;
const printHelp = () => {
return console.log(`
Usage
$ bunx svg-color-linter --config color-config.yml mySvgFile.svg anotherSvgFile.svg
Options
--config, -c Path to the yml file containing the colors
--version, -v Show version
--help, -h Show help
`);
};
exports.printHelp = printHelp;