Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/dist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function toDist(sourcePath: string): YAML.Document {
source.compat_features.sort();
if (isDeepStrictEqual(source.compat_features, taggedCompatFeatures)) {
logger.warn(
`${id}: compat_features override matches tags in @mdn/browser-compat-data. Consider deleting this override.`,
`${id}: compat_features override matches tags in @mdn/browser-compat-data. Consider deleting the compat_features override.`,
);
}
}
Expand Down Expand Up @@ -211,7 +211,7 @@ function toDist(sourcePath: string): YAML.Document {
if (source.status) {
if (isDeepStrictEqual(source.status, computedStatus)) {
logger.warn(
`${id}: status override matches computed status. Consider deleting this override.`,
`${id}: status override matches computed status. Consider deleting the status override.`,
);
}
}
Expand All @@ -236,7 +236,7 @@ function toDist(sourcePath: string): YAML.Document {
if (computeFromWasExplicitlySet) {
if (groups.size === 1) {
logger.error(
`${id}: uses compute_from which must not be used when the overall status does not differ from the per-key statuses. Delete this override.`,
`${id}: uses compute_from which must not be used when the overall status does not differ from the per-key statuses. Delete the status override.`,
);
exitStatus = 1;
}
Expand Down