gluegun
Version:
A delightful toolkit for building Node-powered CLIs.
14 lines • 440 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var template_tools_1 = require("../toolbox/template-tools");
/**
* Builds the code generation feature.
*
* @param toolbox The running toolbox.
*/
function attach(toolbox) {
var generate = (0, template_tools_1.buildGenerate)(toolbox);
toolbox.template = { generate: generate };
}
exports.default = attach;
//# sourceMappingURL=template-extension.js.map
;