UNPKG

@primno/cli

Version:

Command-line interface tool for initializing, building, and deploying Primno workspaces

19 lines (18 loc) 448 B
export default function ( /** @type { import("node-plop").NodePlopAPI } */ plop ) { plop.setGenerator('new', { description: 'Create a new workspace', actions: [ { type: 'addMany', templateFiles: 'new/**', globOptions: { dot: true, }, destination: '.', } ] }); }