reffy 14.2.2 → 14.2.4

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": "14.2.2",
3
+ "version": "14.2.4",
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",
@@ -36,15 +36,15 @@
36
36
  "ajv-formats": "2.1.1",
37
37
  "commander": "11.1.0",
38
38
  "fetch-filecache-for-crawling": "5.1.1",
39
- "puppeteer": "21.5.0",
39
+ "puppeteer": "21.5.1",
40
40
  "semver": "^7.3.5",
41
- "web-specs": "2.72.0",
41
+ "web-specs": "2.73.0",
42
42
  "webidl2": "24.4.1"
43
43
  },
44
44
  "devDependencies": {
45
45
  "chai": "4.3.10",
46
46
  "mocha": "10.2.0",
47
- "respec": "34.2.0",
47
+ "respec": "34.2.1",
48
48
  "respec-hljs": "2.1.1",
49
49
  "rollup": "4.3.0",
50
50
  "undici": "^5.22.1"
@@ -33,13 +33,15 @@ module.exports = {
33
33
  dfn.linkingText[0] !== 'MessageEventSource');
34
34
  }
35
35
 
36
- // The /TR version of the WebCrypto API does not follow the usual dfn data
37
- // model. Definitions get extracted as "exported" as a result. This
38
- // creates collisions. The nightly version of the API respects the dfn
39
- // data model, so let's force /TR dfns to be "non-exported" (most don't
40
- // have the right "type" in any case). Also see discussion in:
36
+ // The /TR versions of WebCrypto API, Publication Manifest and Audiobooks
37
+ // do not follow the usual dfn data model. Definitions get extracted as
38
+ // "exported" as a result. This creates collisions. The nightly versions
39
+ // of the specs respect the dfn data model and these specs don't export
40
+ // terms in practice. Also see discussion in:
41
41
  // https://github.com/w3c/reffy/issues/1250
42
- else if (spec.crawled.includes('/TR/WebCryptoAPI/')) {
42
+ else if (spec.crawled.includes('/TR/WebCryptoAPI/') ||
43
+ spec.crawled.includes('/TR/pub-manifest/') ||
44
+ spec.crawled.includes('/TR/audiobooks/')) {
43
45
  spec.dfns.forEach(dfn => dfn.access = 'private');
44
46
  }
45
47
  }