MCPcopy Index your code
hub / github.com/NativeScript/firebase / buildAngular

Function buildAngular

tools/scripts/build-finish.ts:21–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19
20// build angular package
21function 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}
38function copyAngularDist() {

Callers 1

build-finish.tsFile · 0.85

Calls 4

finishPreparationFunction · 0.85
logMethod · 0.65
thenMethod · 0.45
errorMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…