reffy 11.4.2 → 11.4.3
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": "11.4.
|
|
3
|
+
"version": "11.4.3",
|
|
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,18 +37,18 @@
|
|
|
37
37
|
"ajv-formats": "2.1.1",
|
|
38
38
|
"commander": "10.0.0",
|
|
39
39
|
"fetch-filecache-for-crawling": "4.1.0",
|
|
40
|
-
"puppeteer": "19.
|
|
40
|
+
"puppeteer": "19.7.1",
|
|
41
41
|
"semver": "^7.3.5",
|
|
42
|
-
"web-specs": "2.
|
|
42
|
+
"web-specs": "2.48.0",
|
|
43
43
|
"webidl2": "24.2.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"chai": "4.3.7",
|
|
47
47
|
"mocha": "10.2.0",
|
|
48
48
|
"nock": "13.3.0",
|
|
49
|
-
"respec": "32.
|
|
49
|
+
"respec": "32.7.1",
|
|
50
50
|
"respec-hljs": "2.1.1",
|
|
51
|
-
"rollup": "3.
|
|
51
|
+
"rollup": "3.15.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"test": "mocha --recursive tests/"
|
|
@@ -333,7 +333,10 @@ const dfnLabel2Property = label => label.trim()
|
|
|
333
333
|
.map((str, idx) => (idx === 0) ?
|
|
334
334
|
str.toLowerCase() :
|
|
335
335
|
str.charAt(0).toUpperCase() + str.slice(1))
|
|
336
|
-
.join('')
|
|
336
|
+
.join('')
|
|
337
|
+
// Spec may use singular when there is only one new value
|
|
338
|
+
// (e.g. new value of "text-transform" in MathML Core)
|
|
339
|
+
.replace(/^newValue$/, 'newValues');
|
|
337
340
|
|
|
338
341
|
|
|
339
342
|
/**
|