index.js 647 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.default = default_1;
  4. const schematics_1 = require("@angular-devkit/schematics");
  5. const build_component_1 = require("../../utils/build-component");
  6. function default_1(options) {
  7. return (0, schematics_1.chain)([
  8. (0, build_component_1.buildComponent)(Object.assign({}, options), {
  9. template: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html.template',
  10. stylesheet: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__style__.template'
  11. })
  12. ]);
  13. }
  14. //# sourceMappingURL=index.js.map