File tree Expand file tree Collapse file tree 12 files changed +257
-490
lines changed Expand file tree Collapse file tree 12 files changed +257
-490
lines changed Original file line number Diff line number Diff line change 9
9
push :
10
10
branches : [main]
11
11
paths-ignore :
12
- - " document/**"
13
- - " *.md"
14
- - " *.mdx"
12
+ - ' document/**'
13
+ - ' *.md'
14
+ - ' *.mdx'
15
15
16
16
merge_group :
17
17
18
18
# Allows you to run this workflow manually from the Actions tab
19
19
workflow_dispatch :
20
20
21
- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
21
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
22
22
jobs :
23
23
# ======== ut ========
24
24
ut-ubuntu :
25
- runs-on : ubuntu-20 .04
25
+ runs-on : ubuntu-22 .04
26
26
strategy :
27
27
matrix :
28
- node-version : [22.x]
28
+ node-version : [22.x]
29
29
30
30
# Steps represent a sequence of tasks that will be executed as part of the job
31
31
steps :
@@ -60,13 +60,12 @@ jobs:
60
60
- name : Unit Test
61
61
if : ${{steps.skip-ci.outputs.RESULT != 'true'}}
62
62
run : pnpm run test:all
63
-
64
63
# ======== e2e ========
65
64
# e2e-ubuntu:
66
65
# runs-on: ubuntu-latest
67
66
# strategy:
68
67
# matrix:
69
- # node-version: [18.x]
68
+ # node-version: [18.x]
70
69
71
70
# # Steps represent a sequence of tasks that will be executed as part of the job
72
71
# steps:
Original file line number Diff line number Diff line change 13
13
"**/.DS_Store" : true
14
14
},
15
15
"editor.defaultFormatter" : " biomejs.biome" ,
16
- "editor.defaultFoldingRangeProvider" : " biomejs.biome"
16
+ "editor.defaultFoldingRangeProvider" : " biomejs.biome" ,
17
+ "[yaml]" : {
18
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
19
+ }
17
20
}
Original file line number Diff line number Diff line change 19
19
"@rsdoctor/types" : " workspace:*" ,
20
20
"@rsdoctor/utils" : " workspace:*" ,
21
21
"@rsdoctor/webpack-plugin" : " workspace:*" ,
22
- "@rspack/core" : " ^1.2.8 " ,
22
+ "@rspack/core" : " 1.3.5 " ,
23
23
"@types/lodash" : " ^4.17.16" ,
24
24
"@types/node" : " ^16" ,
25
25
"@types/react" : " ^18.3.20" ,
Original file line number Diff line number Diff line change 19
19
},
20
20
"devDependencies" : {
21
21
"@rsdoctor/rspack-plugin" : " workspace:*" ,
22
- "@rspack/cli" : " ^1.2.7 " ,
23
- "@rspack/core" : " ^1.2.7 " ,
22
+ "@rspack/cli" : " 1.3.5 " ,
23
+ "@rspack/core" : " 1.3.5 " ,
24
24
"@rspack/plugin-react-refresh" : " 1.0.0" ,
25
25
"@types/react" : " ^18.0.25" ,
26
26
"@types/react-dom" : " ^18.0.8" ,
Original file line number Diff line number Diff line change 19
19
"devDependencies" : {
20
20
"tsm" : " 2.3.0" ,
21
21
"@rsdoctor/rspack-plugin" : " workspace:*" ,
22
- "@rspack/cli" : " ^1.2.7 " ,
23
- "@rspack/core" : " ^1.2.7 " ,
22
+ "@rspack/cli" : " 1.3.5 " ,
23
+ "@rspack/core" : " 1.3.5 " ,
24
24
"@rspack/plugin-react-refresh" : " ^1.0.1" ,
25
25
"@types/react" : " ^18.0.25" ,
26
26
"@types/react-dom" : " ^18.0.8" ,
Original file line number Diff line number Diff line change 21
21
},
22
22
"devDependencies" : {
23
23
"@rsdoctor/rspack-plugin" : " workspace:*" ,
24
- "@rspack/cli" : " ^1.2.7 " ,
25
- "@rspack/core" : " ^1.2.7 " ,
24
+ "@rspack/cli" : " 1.3.5 " ,
25
+ "@rspack/core" : " 1.3.5 " ,
26
26
"@rspack/plugin-react-refresh" : " ^1.0.1" ,
27
27
"@types/react" : " ^18.0.25" ,
28
28
"@types/react-dom" : " ^18.0.8" ,
Original file line number Diff line number Diff line change 85
85
"browserslist-load-config" : " ^1.0.0"
86
86
},
87
87
"devDependencies" : {
88
- "@rspack/core" : " ^1.2.8 " ,
88
+ "@rspack/core" : " 1.3.5 " ,
89
89
"@scripts/test-helper" : " workspace:*" ,
90
90
"@types/fs-extra" : " ^11.0.4" ,
91
91
"@types/lodash" : " ^4.17.16" ,
Original file line number Diff line number Diff line change 27
27
"lodash" : " ^4.17.21"
28
28
},
29
29
"devDependencies" : {
30
- "@rspack/core" : " ^1.2.8 " ,
30
+ "@rspack/core" : " 1.3.5 " ,
31
31
"@types/lodash" : " ^4.17.16" ,
32
32
"@types/node" : " ^16" ,
33
33
"@types/tapable" : " 2.2.7" ,
Original file line number Diff line number Diff line change 24
24
"source-map" : " ^0.7.4"
25
25
},
26
26
"devDependencies" : {
27
- "@rspack/core" : " ^1.2.8 " ,
27
+ "@rspack/core" : " 1.3.5 " ,
28
28
"@types/node" : " ^16" ,
29
29
"@types/react" : " ^18.3.20" ,
30
30
"tslib" : " 2.8.1" ,
Original file line number Diff line number Diff line change @@ -59,17 +59,17 @@ export type BaseStats = Stats | RspackStatsWrapper;
59
59
60
60
export interface JsStatsError {
61
61
message : string ;
62
- formatted : string ;
63
- title : string ;
62
+ formatted ? : string ;
63
+ title ? : string ;
64
64
}
65
65
66
66
export interface JsStatsWarning extends JsRspackError {
67
67
message : string ;
68
- formatted : string ;
68
+ formatted ? : string ;
69
69
}
70
70
71
71
export interface JsRspackError {
72
- name : string ;
72
+ name ? : string ;
73
73
message : string ;
74
74
moduleIdentifier ?: string ;
75
75
loc ?: string ;
You can’t perform that action at this time.
0 commit comments