/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v20.3.31
scripts/circular-deps-test.conf.mjs
56 строк
1 KB
Paul Gschwendtner
Further clean-up `rules_nodejs` `npm` workspace and remove `yarn.lock` (#29779)
11 мар 2025, 12:05
Не верифицирован
11 мар 2025, 12:05
9dd3f03
Код
Авторство
О чём код?
/** * @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 */ import { statSync } from 'node:fs'; import { join } from 'node:path'; import { packages } from './packages.mjs'; export const baseDir = '../'; export const goldenFile = '../goldens/circular-deps/packages.json'; export const glob = '../packages/**/*.ts'; // Command that will be displayed if the golden needs to be updated. export const approveCommand = 'pnpm ts-circular-deps approve'; /** * Custom module resolver that maps specifiers for local packages folder. * This ensures that cross package/entry-point dependencies can be detected. */ const LOCAL_MAPPINGS = Object.entries(packages).map(([name, pkg]) => [name, pkg.root]); export function resolveModule(specifier) { let localSpecifierPath; for (const [key, value] of LOCAL_MAPPINGS) { if (specifier.startsWith(key)) { localSpecifierPath = specifier.replace(key, value); break; } } if (!localSpecifierPath) { return null; } const lookups = [ localSpecifierPath, `${localSpecifierPath}.ts`, join(localSpecifierPath, 'src/index.ts'), join(localSpecifierPath, 'index.ts'), ]; for (const lookup of lookups) { try { if (statSync(lookup).isFile()) { return lookup; } } catch {} } return null; }