()
| 19 | |
| 20 | // build angular package |
| 21 | function buildAngular() { |
| 22 | ngPackage |
| 23 | .ngPackagr() |
| 24 | .forProject(path.join('packages', packageName, 'angular', 'ng-package.json')) |
| 25 | .withTsConfig(path.join('packages', packageName, 'angular', 'tsconfig.angular.json')) |
| 26 | .build() |
| 27 | .then(() => { |
| 28 | console.log(`${npmPackageName} angular built successfully.`); |
| 29 | finishPreparation(); |
| 30 | }) |
| 31 | .catch((error) => { |
| 32 | console.error(error); |
| 33 | process.exit(1); |
| 34 | }); |
| 35 | } |
| 36 | |
| 37 | // copy angular ng-packagr output to dist/packages/{name} |
| 38 | function copyAngularDist() { |
no test coverage detected
searching dependent graphs…