respec 34.1.7 → 34.2.0

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": "respec",
3
- "version": "34.1.7",
3
+ "version": "34.2.0",
4
4
  "license": "W3C",
5
5
  "description": "A technical specification pre-processor.",
6
6
  "engines": {
@@ -24,22 +24,22 @@
24
24
  "Robin Berjon"
25
25
  ],
26
26
  "devDependencies": {
27
- "@rollup/plugin-alias": "^5.0.0",
28
- "@rollup/plugin-commonjs": "^25.0.4",
29
- "@rollup/plugin-node-resolve": "^15.2.1",
30
- "@rollup/plugin-terser": "^0.4.3",
27
+ "@rollup/plugin-alias": "^5.0.1",
28
+ "@rollup/plugin-commonjs": "^25.0.7",
29
+ "@rollup/plugin-node-resolve": "^15.2.3",
30
+ "@rollup/plugin-terser": "^0.4.4",
31
31
  "@types/marked": "^4.3.1",
32
- "@types/pluralize": "0.0.30",
32
+ "@types/pluralize": "0.0.31",
33
33
  "boxen": "^7.1.1",
34
34
  "chokidar": "^3.5.3",
35
35
  "clean-css": "^5.3.2",
36
36
  "epipebomb": "^1.0.0",
37
- "eslint": "^8.49.0",
37
+ "eslint": "^8.51.0",
38
38
  "eslint-config-prettier": "^9.0.0",
39
39
  "eslint-plugin-import": "^2.28.1",
40
40
  "eslint-plugin-jasmine": "^4.1.3",
41
- "eslint-plugin-prettier": "^5.0.0",
42
- "highlight.js": "^11.8.0",
41
+ "eslint-plugin-prettier": "^5.0.1",
42
+ "highlight.js": "^11.9.0",
43
43
  "hyperhtml": "^2.34.2",
44
44
  "idb": "^7.1.1",
45
45
  "jasmine": "^5.1.0",
@@ -55,7 +55,7 @@
55
55
  "pluralize": "^8.0.0",
56
56
  "prettier": "^3.0.3",
57
57
  "prompt": "^1.3.0",
58
- "rollup": "^3.29.1",
58
+ "rollup": "^4.1.4",
59
59
  "rollup-plugin-minify-html-literals": "^1.2.6",
60
60
  "serve": "^14.2.1",
61
61
  "serve-handler": "^6.1.5",
@@ -90,7 +90,7 @@
90
90
  "colors": "1.4.0",
91
91
  "finalhandler": "^1.2.0",
92
92
  "marked": "^4.3.0",
93
- "puppeteer": "^21.2.0",
93
+ "puppeteer": "^21.3.8",
94
94
  "sade": "^1.8.1",
95
95
  "serve-static": "^1.15.0"
96
96
  },
@@ -305,7 +305,7 @@ async function evaluateHTML(version, timer) {
305
305
  function handleConsoleMessages(page, onError, onWarning) {
306
306
  /** @param {import('puppeteer').JSHandle<any>} handle */
307
307
  async function stringifyJSHandle(handle) {
308
- return await handle.executionContext().evaluate(obj => {
308
+ return await handle.evaluate(obj => {
309
309
  if (typeof obj === "string") {
310
310
  // Old ReSpec versions might report errors as strings.
311
311
  return JSON.stringify({ message: String(obj) });