ng-packagr
Version:
Compile and package a TypeScript library to Angular Package Format
15 lines • 405 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.build = void 0;
const packagr_1 = require("../packagr");
/**
* Command running an "one-off" build.
*
* @stable
*/
exports.build = opts => packagr_1.ngPackagr()
.forProject(opts.project)
.withOptions({ watch: opts.watch })
.withTsConfig(opts.config)
.build();
//# sourceMappingURL=build.command.js.map