/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/cli/src/package-managers/package-tree.ts
27 строк
691 B
Charles Lyding
refactor(@angular/cli): introduce new package manager abstraction
26 сен 2025, 00:46
26 сен 2025, 00:46
b69d85b
Код
Авторство
О чём код?
/** * @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.dev/license */ /** * @fileoverview * This file defines the interfaces for representing a project's installed * package dependency tree. */ /** * Represents a package that is installed in the project's node_modules. */ export interface InstalledPackage { /** The name of the package. */ readonly name: string; /** The installed version of the package. */ readonly version: string; /** The absolute path to the package's directory on disk, if available. */ readonly path?: string; }