()
| 36 | |
| 37 | // copy angular ng-packagr output to dist/packages/{name} |
| 38 | function copyAngularDist() { |
| 39 | fs.copy(path.join('packages', packageName, 'angular', 'dist'), path.join('dist', 'packages', packageName, 'angular')) |
| 40 | .then(() => { |
| 41 | console.log(`${npmPackageName} angular built successfully.`); |
| 42 | // buildNativeSrc(); |
| 43 | finishPreparation(); |
| 44 | }) |
| 45 | .catch((err) => console.error(err)); |
| 46 | } |
| 47 | |
| 48 | function cleanPackage() { |
| 49 | // helps remove unwanted properties which may be added by other tooling |
nothing calls this directly
no test coverage detected
searching dependent graphs…