/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/animations/browser/src/warning_helpers.ts
45 строк
1 KB
arturovt
refactor(animations): drop warning functions in production (#59408)
09 янв 2025, 21:15
09 янв 2025, 21:15
5884153
Код
Авторство
О чём код?
/** * @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 */ function createListOfWarnings(warnings: string[]): string { const LINE_START = '\n - '; return `${LINE_START}${warnings .filter(Boolean) .map((warning) => warning) .join(LINE_START)}`; } export function warnValidation(warnings: string[]): void { console.warn(`animation validation warnings:${createListOfWarnings(warnings)}`); } export function warnTriggerBuild(name: string, warnings: string[]): void { console.warn( `The animation trigger "${name}" has built with the following warnings:${createListOfWarnings( warnings, )}`, ); } export function warnRegister(warnings: string[]): void { console.warn(`Animation built with the following warnings:${createListOfWarnings(warnings)}`); } export function triggerParsingWarnings(name: string, warnings: string[]): void { console.warn( `Animation parsing for the ${name} trigger presents the following warnings:${createListOfWarnings( warnings, )}`, ); } export function pushUnrecognizedPropertiesWarning(warnings: string[], props: string[]): void { if (props.length) { warnings.push(`The following provided properties are not recognized: ${props.join(', ')}`); } }