Commit 8568650 1 parent 3fd9af3 commit 8568650 Copy full SHA for 8568650
File tree 8 files changed +233
-203
lines changed
8 files changed +233
-203
lines changed Original file line number Diff line number Diff line change 11
11
"typecheck" : " tsc --noEmit"
12
12
},
13
13
"devDependencies" : {
14
- "@lwc/engine-dom" : " ^8.14 .0" ,
15
- "lwc" : " ^8.14 .0" ,
14
+ "@lwc/engine-dom" : " ^8.15 .0" ,
15
+ "lwc" : " ^8.15 .0" ,
16
16
"typescript" : " ^5.8.2" ,
17
- "vite-plugin-lwc" : " ^4.0.0"
17
+ "vite-plugin-lwc" : " ^4.0.1" ,
18
+ "vite" : " ^6.2.0"
18
19
}
19
20
}
Original file line number Diff line number Diff line change 18
18
"sirv" : " ^3.0.1"
19
19
},
20
20
"devDependencies" : {
21
- "@lwc/engine-dom" : " ^8.14 .0" ,
22
- "@lwc/ssr-runtime" : " ^8.14 .0" ,
21
+ "@lwc/engine-dom" : " ^8.15 .0" ,
22
+ "@lwc/ssr-runtime" : " ^8.15 .0" ,
23
23
"@types/compression" : " ^1.7.5" ,
24
24
"@types/express" : " ^5.0.0" ,
25
25
"cross-env" : " ^7.0.3" ,
26
- "lwc" : " ^8.14 .0" ,
27
- "vite-plugin-lwc" : " ^4.0.0 "
26
+ "lwc" : " ^8.15 .0" ,
27
+ "vite-plugin-lwc" : " ^4.0.1 "
28
28
}
29
29
}
Original file line number Diff line number Diff line change 17
17
"devDependencies" : {
18
18
"@changesets/cli" : " ^2.28.1" ,
19
19
"@eslint/js" : " ^9.21.0" ,
20
- "@types/node" : " ^22.13.8 " ,
20
+ "@types/node" : " ^22.13.9 " ,
21
21
"@vitest/browser" : " ^3.0.7" ,
22
22
"@vitest/ui" : " ^3.0.7" ,
23
23
"eslint" : " ^9.21.0" ,
Original file line number Diff line number Diff line change 1
1
# 4.0.0
2
2
3
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c03d3d1: Fix process undefined error in lwc 8.15.0
8
+
3
9
## 4.0.1
4
10
5
11
### Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vite-plugin-lwc" ,
3
- "version" : " 4.0.1 " ,
3
+ "version" : " 4.0.2 " ,
4
4
"license" : " MIT" ,
5
5
"author" :
" Matheus Cardoso <[email protected] >" ,
6
6
"maintainers" : [
Original file line number Diff line number Diff line change @@ -46,6 +46,13 @@ export default function lwcVite(rawConfig: ViteLwcOptions): Plugin {
46
46
47
47
return {
48
48
name : "lwc:vite-plugin" ,
49
+ config ( ) {
50
+ return {
51
+ define : {
52
+ 'process.env.SKIP_LWC_VERSION_MISMATCH_CHECK' : 'false' ,
53
+ } ,
54
+ }
55
+ } ,
49
56
async buildStart ( options ) {
50
57
try {
51
58
await csr . buildStart . call ( this , options ) ;
Original file line number Diff line number Diff line change 12
12
"typecheck" : " tsc --noEmit"
13
13
},
14
14
"devDependencies" : {
15
- "@lwc/engine-dom" : " ^8.14 .0" ,
16
- "@lwc/shared" : " ^8.14 .0" ,
17
- "@lwc/synthetic-shadow" : " ^8.14 .0" ,
18
- "@lwc/wire-service" : " ^8.14 .0" ,
19
- "lwc" : " ^8.14 .0" ,
15
+ "@lwc/engine-dom" : " ^8.15 .0" ,
16
+ "@lwc/shared" : " ^8.15 .0" ,
17
+ "@lwc/synthetic-shadow" : " ^8.15 .0" ,
18
+ "@lwc/wire-service" : " ^8.15 .0" ,
19
+ "lwc" : " ^8.15 .0" ,
20
20
"vite-plugin-lwc" : " workspace:^"
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments