undocs-nightly 0.4.11-20251210-235718-8f57edc → 0.4.12-20260114-181605-5fac75b

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.
Files changed (2) hide show
  1. package/cli/cli.mjs +8 -4
  2. package/package.json +28 -28
package/cli/cli.mjs CHANGED
@@ -58,8 +58,11 @@ export function createCLI(opts) {
58
58
  process.chdir(appDir)
59
59
  process.on('exit', () => unwatch())
60
60
 
61
- const { runCommand } = await import('nuxi')
62
- await runCommand('dev', [appDir, '--no-fork', '--port', process.env.PORT || '4000'], { overrides: nuxtConfig })
61
+ const { runCommand, main } = await import('nuxi')
62
+ const cmd = await main.subCommands.dev()
63
+ await runCommand(cmd, [appDir, '--no-fork', '--port', process.env.PORT || '4000'], {
64
+ overrides: nuxtConfig,
65
+ })
63
66
  },
64
67
  })
65
68
 
@@ -74,8 +77,9 @@ export function createCLI(opts) {
74
77
 
75
78
  process.chdir(appDir)
76
79
 
77
- const { runCommand } = await import('nuxi')
78
- await runCommand('generate', [appDir], { overrides: nuxtConfig })
80
+ const { runCommand, main } = await import('nuxi')
81
+ const cmd = await main.subCommands.generate()
82
+ await runCommand(cmd, [appDir], { overrides: nuxtConfig })
79
83
  },
80
84
  })
81
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undocs-nightly",
3
- "version": "0.4.11-20251210-235718-8f57edc",
3
+ "version": "0.4.12-20260114-181605-5fac75b",
4
4
  "repository": "unjs/undocs",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,47 +31,47 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@headlessui/vue": "^1.7.23",
34
- "@iconify-json/logos": "^1.2.9",
35
- "@iconify-json/simple-icons": "^1.2.52",
36
- "@nuxt/content": "^3.7.1",
37
- "@nuxt/fonts": "^0.11.4",
38
- "@nuxt/ui": "4.0.0-alpha.2",
34
+ "@iconify-json/logos": "^1.2.10",
35
+ "@iconify-json/simple-icons": "^1.2.66",
36
+ "@nuxt/content": "^3.10.0",
37
+ "@nuxt/fonts": "^0.12.1",
38
+ "@nuxt/ui": "^4.3.0",
39
39
  "@nuxtjs/plausible": "^2.0.1",
40
40
  "@resvg/resvg-wasm": "^2.6.2",
41
41
  "automd": "^0.4.2",
42
- "c12": "^3.3.0",
42
+ "c12": "^3.3.3",
43
43
  "citty": "^0.1.6",
44
44
  "consola": "^3.4.2",
45
45
  "defu": "^6.1.4",
46
46
  "is-buffer": "^2.0.5",
47
47
  "md4w": "^0.2.7",
48
- "mermaid": "^11.12.0",
49
- "motion-v": "^1.7.1",
50
- "nitropack": "^2.12.6",
51
- "nuxi": "^3.28.0",
52
- "nuxt": "^4.1.2",
48
+ "mermaid": "^11.12.2",
49
+ "motion-v": "^1.9.0",
50
+ "nitropack": "^2.13.0",
51
+ "nuxi": "^3.32.0",
52
+ "nuxt": "^4.2.2",
53
53
  "nuxt-build-cache": "^0.1.1",
54
54
  "nuxt-llms": "^0.1.3",
55
55
  "pkg-types": "^2.3.0",
56
56
  "scule": "^1.3.0",
57
- "shiki": "^3.12.2",
58
- "tailwindcss": "^4.1.13",
59
- "unctx": "^2.4.1",
60
- "unstorage": "^1.17.1",
61
- "vue": "^3.5.21",
62
- "vue-router": "^4.5.1"
57
+ "shiki": "^3.21.0",
58
+ "tailwindcss": "^4.1.18",
59
+ "unctx": "^2.5.0",
60
+ "unstorage": "^1.17.3",
61
+ "vue": "^3.5.26",
62
+ "vue-router": "^4.6.4"
63
63
  },
64
64
  "devDependencies": {
65
- "@nuxt/eslint-config": "^1.9.0",
66
- "@nuxt/image": "^1.11.0",
67
- "@types/node": "^24.5.2",
65
+ "@nuxt/eslint-config": "^1.12.1",
66
+ "@nuxt/image": "^2.0.0",
67
+ "@types/node": "^25.0.8",
68
68
  "changelogen": "^0.6.2",
69
- "eslint": "^9.35.0",
70
- "eslint-config-unjs": "^0.5.0",
71
- "jiti": "^2.5.1",
72
- "prettier": "^3.6.2",
73
- "typescript": "^5.9.2",
74
- "vue-tsc": "^3.0.7"
69
+ "eslint": "^9.39.2",
70
+ "eslint-config-unjs": "^0.6.2",
71
+ "jiti": "^2.6.1",
72
+ "prettier": "^3.7.4",
73
+ "typescript": "^5.9.3",
74
+ "vue-tsc": "^3.2.2"
75
75
  },
76
- "packageManager": "pnpm@10.17.0"
76
+ "packageManager": "pnpm@10.28.0"
77
77
  }