@markedjs/testutils 17.0.1-2 → 17.0.5-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/lib/load-tests.js CHANGED
@@ -49,7 +49,7 @@ export async function loadTests(fileOrDir) {
49
49
  // must import esm
50
50
  json = await import(absFile);
51
51
  }
52
- specs = specs.concat(json);
52
+ specs = specs.concat(json.default ?? json);
53
53
  break;
54
54
  }
55
55
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markedjs/testutils",
3
- "version": "17.0.1-2",
3
+ "version": "17.0.5-0",
4
4
  "description": "Test utilities for marked and marked extensions",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -36,17 +36,17 @@
36
36
  "dependencies": {
37
37
  "@markedjs/html-differ": "^5.0.4",
38
38
  "front-matter": "^4.0.2",
39
- "marked": "17.0.1",
39
+ "marked": "17.0.5",
40
40
  "marked-repo": "https://github.com/markedjs/marked/tarball/v17.0.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@arethetypeswrong/cli": "^0.18.2",
44
- "@eslint/js": "^9.33.0",
45
- "@types/node": "^22.10.2",
46
- "eslint": "^9.39.2",
47
- "globals": "^16.5.0",
48
- "prettier": "^3.7.4",
49
- "tsx": "^4.7.1",
50
- "typescript": "^5.7.2"
44
+ "@eslint/js": "^10.0.1",
45
+ "@types/node": "^25.5.0",
46
+ "eslint": "^10.1.0",
47
+ "globals": "^17.4.0",
48
+ "prettier": "^3.8.1",
49
+ "tsx": "^4.21.0",
50
+ "typescript": "^5.9.3"
51
51
  }
52
52
  }