mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-25 00:31:36 +08:00
With this change we clean up the package-metadata retrieval logic and types by using public `@types/` packages. Also, we lazily require `pacote` since this has a large set to dependencies which slows down module resolution.
16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
declare module 'npm-pick-manifest' {
|
|
function pickManifest(
|
|
metadata: import('./utilities/package-metadata').PackageMetadata,
|
|
selector: string,
|
|
): import('./utilities/package-metadata').PackageManifest;
|
|
export = pickManifest;
|
|
}
|