UNPKG

pruno-cli

Version:

A CLI tool for scaffolding projects that use the pruno build tool and a generator for creating components.

11 lines (7 loc) 241 B
"use strict"; import addMixes from "../utils/add-mixes"; let install = (program) => program.command('install <mixes...>') .alias('i') .description('Install and configure a new pruno-mix.') .action(addMixes); export default install;