mirror of
https://github.com/TrezOne/congo-hindi-gujarati.git
synced 2026-07-18 08:48:26 -04:00
feat: port script to node
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#!/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);
|
||||
Reference in New Issue
Block a user