undocs 0.2.26 → 0.2.27

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.
@@ -26,7 +26,7 @@ export default defineNitroPlugin((nitroApp) => {
26
26
  transformGithubAlert(node)
27
27
  transformStepsList(node)
28
28
  transformCodeGroups(idx, file.body?.children)
29
- transformJSDocs(idx, file.body?.children)
29
+ // transformJSDocs(idx, file.body?.children)
30
30
  }
31
31
  })
32
32
  })
@@ -215,7 +215,7 @@ function _isNamedCodeBlock(children: ContentNode): boolean {
215
215
 
216
216
  // --- transform automd jsdocs ---
217
217
 
218
- function transformJSDocs(currChildIdx: number, children: ContentNode[] = []) {
218
+ export function transformJSDocs(currChildIdx: number, children: ContentNode[] = []) {
219
219
  if (!children?.length || !_isJSDocBlock(children[currChildIdx])) {
220
220
  return
221
221
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undocs",
3
- "version": "0.2.26",
3
+ "version": "0.2.27",
4
4
  "repository": "unjs/undocs",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,44 +30,44 @@
30
30
  "undocs": "./cli/main.mjs"
31
31
  },
32
32
  "dependencies": {
33
- "@headlessui/vue": "^1.7.22",
33
+ "@headlessui/vue": "^1.7.23",
34
34
  "@iconify-json/logos": "^1.2.0",
35
- "@iconify-json/simple-icons": "^1.2.1",
35
+ "@iconify-json/simple-icons": "^1.2.2",
36
36
  "@nuxt/content": "^2.13.2",
37
- "@nuxt/fonts": "^0.7.2",
38
- "@nuxt/ui-pro": "^1.4.1",
37
+ "@nuxt/fonts": "^0.8.0",
38
+ "@nuxt/ui-pro": "^1.4.2",
39
39
  "@nuxtjs/plausible": "^1.0.2",
40
40
  "@nuxtjs/tailwindcss": "^6.12.1",
41
41
  "@resvg/resvg-wasm": "^2.6.2",
42
42
  "automd": "^0.3.8",
43
- "c12": "^1.11.1",
43
+ "c12": "^1.11.2",
44
44
  "citty": "^0.1.6",
45
45
  "consola": "^3.2.3",
46
46
  "defu": "^6.1.4",
47
47
  "is-buffer": "^2.0.5",
48
48
  "nitropack": "^2.9.7",
49
49
  "nuxi": "^3.13.1",
50
- "nuxt": "^3.13.0",
50
+ "nuxt": "^3.13.1",
51
51
  "nuxt-build-cache": "^0.1.1",
52
52
  "pkg-types": "^1.2.0",
53
53
  "scule": "^1.3.0",
54
- "tailwindcss": "^3.4.10",
54
+ "tailwindcss": "^3.4.11",
55
55
  "unctx": "^2.3.1",
56
- "unstorage": "^1.10.2",
57
- "vue": "^3.4.38",
58
- "vue-router": "^4.4.3"
56
+ "unstorage": "^1.12.0",
57
+ "vue": "^3.5.4",
58
+ "vue-router": "^4.4.4"
59
59
  },
60
60
  "devDependencies": {
61
- "@nuxt/eslint-config": "^0.5.5",
61
+ "@nuxt/eslint-config": "^0.5.7",
62
62
  "@nuxt/image": "^1.8.0",
63
- "@types/node": "^22.5.2",
63
+ "@types/node": "^22.5.4",
64
64
  "changelogen": "^0.5.5",
65
- "eslint": "^9.9.1",
65
+ "eslint": "^9.10.0",
66
66
  "eslint-config-unjs": "^0.3.2",
67
67
  "jiti": "^1.21.6",
68
68
  "prettier": "^3.3.3",
69
- "typescript": "^5.5.4",
70
- "vue-tsc": "^2.1.4"
69
+ "typescript": "^5.6.2",
70
+ "vue-tsc": "^2.1.6"
71
71
  },
72
72
  "packageManager": "bun@1.1.24"
73
73
  }