File tree 8 files changed +703
-471
lines changed
8 files changed +703
-471
lines changed Original file line number Diff line number Diff line change 42
42
"p-series" : " ^3.0.0" ,
43
43
"prettier" : " ^2.8.8" ,
44
44
"semver" : " ^7.6.3" ,
45
- "typedoc" : " ^0.25.13 " ,
46
- "typedoc-plugin-markdown" : " ^3.17.1 " ,
47
- "typescript" : " ~5.3 .3" ,
45
+ "typedoc" : " ^0.26.11 " ,
46
+ "typedoc-plugin-markdown" : " ^4.2.10 " ,
47
+ "typescript" : " ~5.6 .3" ,
48
48
"vitest" : " ^2.1.5" ,
49
49
"yorkie" : " ^2.0.0"
50
50
},
Original file line number Diff line number Diff line change 14
14
},
15
15
"dependencies" : {
16
16
"simple-git" : " ^3.27.0" ,
17
- "vitepress" : " 1.2.3 " ,
17
+ "vitepress" : " 1.5.0 " ,
18
18
"vitepress-translation-helper" : " ^0.2.1" ,
19
19
"vue-router" : " workspace:*"
20
20
}
Original file line number Diff line number Diff line change @@ -6,10 +6,9 @@ const __dirname = path.dirname(new URL(import.meta.url).pathname)
6
6
createTypeDocApp ( {
7
7
name : 'API Documentation' ,
8
8
tsconfig : path . resolve ( __dirname , './typedoc.tsconfig.json' ) ,
9
- // entryPointStrategy: 'packages',
10
9
categorizeByGroup : true ,
11
10
githubPages : false ,
12
- disableSources : true ,
11
+ disableSources : true , // some links are in node_modules and it's ugly
13
12
plugin : [ 'typedoc-plugin-markdown' ] ,
14
13
entryPoints : [ path . resolve ( __dirname , '../router/src/index.ts' ) ] ,
15
14
} ) . then ( app => app . build ( ) )
Original file line number Diff line number Diff line change 1
1
// @ts -check
2
2
import fs from 'node:fs/promises'
3
3
import path from 'node:path'
4
- import { Application , TSConfigReader , PageEvent } from 'typedoc'
4
+ import { Application , PageEvent , TSConfigReader } from 'typedoc'
5
5
6
6
const __dirname = path . dirname ( new URL ( import . meta. url ) . pathname )
7
7
@@ -11,9 +11,8 @@ const DEFAULT_OPTIONS = {
11
11
excludeInternal : false ,
12
12
readme : 'none' ,
13
13
out : path . resolve ( __dirname , './api' ) ,
14
- entryDocument : 'index.md' ,
14
+ entryFileName : 'index.md' ,
15
15
hideBreadcrumbs : false ,
16
- hideInPageTOC : true ,
17
16
preserveAnchorCasing : true ,
18
17
}
19
18
@@ -108,7 +107,7 @@ async function exists(path) {
108
107
*/
109
108
function prependYAML ( contents , vars ) {
110
109
return contents
111
- . replace ( / ^ / , toYAML ( vars ) + ' \n\n' )
110
+ . replace ( / ^ / , ` ${ toYAML ( vars ) } \n\n` )
112
111
. replace ( / [ \r \n ] { 3 , } / g, '\n\n' )
113
112
}
114
113
Original file line number Diff line number Diff line change 9
9
"preview" : " vite preview --port 4173"
10
10
},
11
11
"dependencies" : {
12
- "vue" : " ~3.4.38 "
12
+ "vue" : " ~3.5.13 "
13
13
},
14
14
"devDependencies" : {
15
15
"@types/node" : " ^20.17.7" ,
16
16
"@vitejs/plugin-vue" : " ^5.2.0" ,
17
- "@vue/compiler-sfc" : " ~3.4.38" ,
18
- "@vue/tsconfig" : " ^0.5.1" ,
19
- "typescript" : " ~5.3.3" ,
17
+ "@vue/compiler-sfc" : " ~3.5.13" ,
18
+ "@vue/tsconfig" : " ^0.6.0" ,
20
19
"vite" : " ^5.4.11" ,
21
20
"vue-router" : " workspace:*" ,
22
21
"vue-tsc" : " ^2.1.10"
Original file line number Diff line number Diff line change 126
126
"@types/jsdom" : " ^21.1.7" ,
127
127
"@types/nightwatch" : " ^2.3.32" ,
128
128
"@vitejs/plugin-vue" : " ^5.2.0" ,
129
- "@vue/compiler-sfc" : " ~3.4.38 " ,
130
- "@vue/server-renderer" : " ~3.4.38 " ,
129
+ "@vue/compiler-sfc" : " ~3.5.13 " ,
130
+ "@vue/server-renderer" : " ~3.5.13 " ,
131
131
"@vue/test-utils" : " ^2.4.6" ,
132
132
"browserstack-local" : " ^1.5.5" ,
133
133
"chromedriver" : " ^131.0.1" ,
143
143
"rollup" : " ^3.29.5" ,
144
144
"rollup-plugin-analyzer" : " ^4.0.0" ,
145
145
"rollup-plugin-typescript2" : " ^0.36.0" ,
146
- "typescript" : " ~5.6.3" ,
147
146
"vite" : " ^5.4.11" ,
148
- "vue" : " ~3.4.38 "
147
+ "vue" : " ~3.5.13 "
149
148
}
150
149
}
Original file line number Diff line number Diff line change @@ -234,7 +234,6 @@ export function useLink<Name extends keyof RouteMap = keyof RouteMap>(
234
234
typeof document !== 'undefined' &&
235
235
'startViewTransition' in document
236
236
) {
237
- // @ts -ignore: this fails with Vitest, FIXME: remove it
238
237
document . startViewTransition ( ( ) => p )
239
238
}
240
239
return p
You can’t perform that action at this time.
0 commit comments