reffy 17.2.6 → 17.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reffy",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.7",
|
|
4
4
|
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"ajv-formats": "3.0.1",
|
|
38
38
|
"commander": "12.1.0",
|
|
39
39
|
"fetch-filecache-for-crawling": "5.1.1",
|
|
40
|
-
"puppeteer": "23.5.
|
|
40
|
+
"puppeteer": "23.5.2",
|
|
41
41
|
"semver": "^7.3.5",
|
|
42
42
|
"web-specs": "3.23.0",
|
|
43
43
|
"webidl2": "24.4.1"
|
|
@@ -319,7 +319,8 @@ export default function (spec, idToHeading = {}) {
|
|
|
319
319
|
})
|
|
320
320
|
.filter(hasValidType)
|
|
321
321
|
// Exclude IDL terms defined in a block that is flagged as to be excluded
|
|
322
|
-
|
|
322
|
+
// or inside a <del>
|
|
323
|
+
.filter(node => !node.closest('.exclude,del'))
|
|
323
324
|
// When the whole term links to an external spec, the definition is an
|
|
324
325
|
// imported definition. Such definitions are not "real" definitions, let's
|
|
325
326
|
// skip them.
|