Skip to content

Commit

Permalink
tools: make metadata parsing less permissive
Browse files Browse the repository at this point in the history
PR-URL: #19512
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
tniessen authored and targos committed Mar 27, 2018
1 parent fa17002 commit 0db7b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/doc/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ function extractAndParseYAML(text) {
// js-yaml.safeLoad() throws on error
const meta = yaml.safeLoad(text);

const added = meta.added || meta.Added;
const added = meta.added;
if (added) {
// Since semver-minors can trickle down to previous major versions,
// features may have been added in multiple versions.
meta.added = arrify(added);
}

const deprecated = meta.deprecated || meta.Deprecated;
const deprecated = meta.deprecated;
if (deprecated) {
// Treat deprecated like added for consistency.
meta.deprecated = arrify(deprecated);
Expand Down

0 comments on commit 0db7b8c

Please sign in to comment.