schematics-utilities
Version:
🛠️ Useful exported utilities for working with Schematics
16 lines • 664 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const cdk_1 = require("../cdk");
/**
* Rule that copies and interpolates the files that belong to this schematic context. Additionally
* a list of file paths can be passed to this rule in order to expose them inside the EJS
* template context.
*
* This allows inlining the external template or stylesheet files in EJS without having
* to manually duplicate the file content.
*/
function buildComponent(options, additionalFiles = {}) {
return cdk_1.buildComponent(options, additionalFiles);
}
exports.buildComponent = buildComponent;
//# sourceMappingURL=build-component.js.map