MCPcopy Index your code
hub / github.com/angular/angularfire / buildLibrary

Function buildLibrary

tools/build.ts:343–353  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

341}
342
343async function buildLibrary() {
344 await zoneWrapExports();
345 await spawnPromise('npx', ['ng', 'build']);
346 await Promise.all([
347 copy(join(process.cwd(), '.npmignore'), dest('.npmignore')),
348 copy(join(process.cwd(), 'README.md'), dest('README.md')),
349 copy(join(process.cwd(), 'docs'), dest('docs')),
350 compileSchematics(),
351 replacePackageCoreVersion(),
352 ]);
353}
354
355buildLibrary().catch(err => {
356 console.error(err);

Callers 1

build.tsFile · 0.85

Calls 5

zoneWrapExportsFunction · 0.85
spawnPromiseFunction · 0.85
destFunction · 0.85
compileSchematicsFunction · 0.85

Tested by

no test coverage detected