Command line helper for Shopware, WordPress and various other server environment needs.
cli shopware bookstack wordpress
at develop 15 lines 395 B view raw
1import { defineCommand, runMain } from "citty"; 2 3const main = defineCommand({ 4 meta: { 5 name: "bcli", 6 version: "0.1.0", 7 description: 8 "Command line helper for Shopware, WordPress and various other server environment needs.", 9 }, 10 subCommands: { 11 bookstack: () => import("./commands/bookstack").then((m) => m.default), 12 }, 13}); 14 15runMain(main);