File tree 12 files changed +3650
-3449
lines changed
12 files changed +3650
-3449
lines changed Original file line number Diff line number Diff line change 1
1
node_modules
2
2
dist
3
3
.nuxt
4
+ static
4
5
coverage
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v1
16
+ - uses : actions/checkout@master
17
17
18
18
- uses : actions/cache@v1
19
19
id : cache
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ export default {
7
7
props: {
8
8
query: { type: String , required: true }
9
9
},
10
- async fetch () {
11
- this .page = await this .$content (this .query ).fetch ()
12
- },
13
10
data : () => ({
14
11
page: []
15
- })
12
+ }),
13
+ async fetch () {
14
+ this .page = await this .$content (this .query ).fetch ()
15
+ }
16
16
}
17
17
</script >
18
18
Original file line number Diff line number Diff line change 5
5
"build" : " nuxt generate"
6
6
},
7
7
"devDependencies" : {
8
- "@nuxt/content-theme-docs" : " ^0.7 .2" ,
9
- "nuxt" : " ^2.14.7 " ,
8
+ "@nuxt/content-theme-docs" : " ^0.8 .2" ,
9
+ "nuxt" : " ^2.14.12 " ,
10
10
"vue-tabs-component" : " ^1.5.0"
11
11
}
12
12
}
Original file line number Diff line number Diff line change 1
1
import Vue from 'vue'
2
-
3
2
import { Tabs , Tab } from 'vue-tabs-component'
4
3
5
- Vue . component ( 'tabs ' , Tabs )
6
- Vue . component ( 'tab ' , Tab )
4
+ Vue . component ( 'Tabs ' , Tabs )
5
+ Vue . component ( 'Tab ' , Tab )
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ module.exports = {
5
5
} ,
6
6
globals : {
7
7
'ts-jest' : {
8
- tsConfig : 'tsconfig.test.json' ,
8
+ tsconfig : 'tsconfig.test.json' ,
9
9
diagnostics : {
10
10
ignoreCodes : [ 2345 ]
11
11
}
Original file line number Diff line number Diff line change 20
20
"lerna" : " latest" ,
21
21
"nuxt-edge" : " latest" ,
22
22
"ts-jest" : " latest" ,
23
- "typescript" : " ~4.0 " ,
23
+ "typescript" : " ~4.1 " ,
24
24
"vue-property-decorator" : " latest"
25
25
}
26
26
}
Original file line number Diff line number Diff line change 16
16
},
17
17
"dependencies" : {
18
18
"consola" : " ^2.15.0" ,
19
- "fork-ts-checker-webpack-plugin" : " ^5.2 .0" ,
20
- "ts-loader" : " ^8.0.4 " ,
21
- "typescript" : " ~4.0 "
19
+ "fork-ts-checker-webpack-plugin" : " ^6.1 .0" ,
20
+ "ts-loader" : " ^8.0.14 " ,
21
+ "typescript" : " ~4.1 "
22
22
},
23
23
"peerDependencies" : {
24
24
"@nuxt/types" : " >=2.13.1"
Original file line number Diff line number Diff line change @@ -5,12 +5,6 @@ import { Options as TsLoaderOptions } from 'ts-loader'
5
5
import { ForkTsCheckerWebpackPluginOptions as TsCheckerOptions } from 'fork-ts-checker-webpack-plugin/lib/ForkTsCheckerWebpackPluginOptions'
6
6
import { RuleSetUseItem } from 'webpack'
7
7
8
- declare module '@nuxt/types' {
9
- interface NuxtOptions {
10
- typescript : Options
11
- }
12
- }
13
-
14
8
export interface Options {
15
9
ignoreNotFoundWarnings ?: boolean
16
10
loaders ?: {
@@ -20,6 +14,12 @@ export interface Options {
20
14
typeCheck ?: TsCheckerOptions | boolean
21
15
}
22
16
17
+ declare module '@nuxt/types' {
18
+ interface NuxtOptions {
19
+ typescript : Options
20
+ }
21
+ }
22
+
23
23
const defaults : Options = {
24
24
ignoreNotFoundWarnings : false ,
25
25
typeCheck : true
Original file line number Diff line number Diff line change 19
19
"compile" : " tsc"
20
20
},
21
21
"dependencies" : {
22
- "ts-node" : " ^9.0.0 " ,
23
- "typescript" : " ~4.0 "
22
+ "ts-node" : " ^9.1.1 " ,
23
+ "typescript" : " ~4.1 "
24
24
},
25
25
"peerDependencies" : {
26
26
"@nuxt/types" : " >=2.13.1"
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments