mirror of https://github.com/jpanther/congo.git
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
|
#!/usr/bin/env node
|
||
|
const { program } = require("commander");
|
||
|
const { add_icon_to_congo } = require("./update_icon");
|
||
|
|
||
|
// Adds an icon to the project.
|
||
|
program
|
||
|
.command("add-icon <icon_name>")
|
||
|
.description("Add icon to the project")
|
||
|
.action(add_icon_to_congo);
|
||
|
|
||
|
program.parse(process.argv);
|