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) • 369 B
JavaScript
;
var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; };
var addMixes = _interopRequire(require("../utils/add-mixes"));
var install = function (program) {
return program.command("install <mixes...>").alias("i").description("Install and configure a new pruno-mix.").action(addMixes);
};
module.exports = install;