From fdf75792cc68747a3429dec522346d68fcf6d42f Mon Sep 17 00:00:00 2001 From: Matthieu Riegler Date: Thu, 27 Feb 2025 16:25:49 +0100 Subject: [PATCH] refactor(ng-dev/commit-message): add more deprecation format This will give more info on the correct deprecation notice expected in the commit body --- ng-dev/commit-message/validate.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ng-dev/commit-message/validate.ts b/ng-dev/commit-message/validate.ts index 40f742fbf..046e6cb38 100644 --- a/ng-dev/commit-message/validate.ts +++ b/ng-dev/commit-message/validate.ts @@ -220,5 +220,9 @@ export function printValidationErrors(errors: string[], print = Log.error) { print(); print(``); print(); + print(`DEPRECATED: `); + print(); + print(``); + print(); print(); }