Skip to content

Commit 9911aba

Browse files
authored
Merge branch 'master' into wjh/wtr-party
2 parents 19097fe + 5cdefeb commit 9911aba

File tree

31 files changed

+132
-132
lines changed

31 files changed

+132
-132
lines changed

ARCHITECTURE.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ At a high level, the `@lwc/compiler` calls into three other packages to process
3131

3232
```mermaid
3333
graph TD
34-
compiler[@lwc/compiler];
35-
templatecompiler[@lwc/template-compiler];
36-
babelplugincomponent[@lwc/babel-plugin-component];
37-
stylecompiler[@lwc/style-compiler];
34+
compiler["@lwc/compiler"];
35+
templatecompiler["@lwc/template-compiler"];
36+
babelplugincomponent["@lwc/babel-plugin-component"];
37+
stylecompiler["@lwc/style-compiler"];
3838
compiler-->|HTML|templatecompiler;
3939
compiler-->|CSS|stylecompiler;
4040
compiler-->|JS|babelplugincomponent;
@@ -52,11 +52,11 @@ We can complicate the diagram a bit more by including `@lwc/rollup-plugin`[^roll
5252

5353
```mermaid
5454
graph TD
55-
rollupplugin[@lwc/rollup-plugin];
56-
compiler[@lwc/compiler];
57-
templatecompiler[@lwc/template-compiler];
58-
babelplugincomponent[@lwc/babel-plugin-component];
59-
stylecompiler[@lwc/style-compiler];
55+
rollupplugin["@lwc/rollup-plugin"];
56+
compiler["@lwc/compiler"];
57+
templatecompiler["@lwc/template-compiler"];
58+
babelplugincomponent["@lwc/babel-plugin-component"];
59+
stylecompiler["@lwc/style-compiler"];
6060
rollupplugin-->compiler;
6161
compiler-->|HTML|templatecompiler;
6262
compiler-->|CSS|stylecompiler;
@@ -67,12 +67,12 @@ This also gets more complex once we include the SSR compiler:
6767

6868
```mermaid
6969
graph TD
70-
rollupplugin[@lwc/rollup-plugin];
71-
compiler[@lwc/compiler];
72-
templatecompiler[@lwc/template-compiler];
73-
babelplugincomponent[@lwc/babel-plugin-component];
74-
stylecompiler[@lwc/style-compiler];
75-
ssrcompiler[@lwc/ssr-compiler];
70+
rollupplugin["@lwc/rollup-plugin"];
71+
compiler["@lwc/compiler"];
72+
templatecompiler["@lwc/template-compiler"];
73+
babelplugincomponent["@lwc/babel-plugin-component"];
74+
stylecompiler["@lwc/style-compiler"];
75+
ssrcompiler["@lwc/ssr-compiler"];
7676
rollupplugin-->compiler;
7777
compiler-->|HTML|templatecompiler;
7878
compiler-->|CSS|stylecompiler;
@@ -90,9 +90,9 @@ At runtime, the core logic of the client-side LWC engine is in `@lwc/engine-core
9090

9191
```mermaid
9292
graph TD
93-
enginedom[@lwc/engine-dom];
94-
enginecore[@lwc/engine-core];
95-
engineserver[@lwc/engine-server];
93+
enginedom["@lwc/engine-dom"];
94+
enginecore["@lwc/engine-core"];
95+
engineserver["@lwc/engine-server"];
9696
enginedom-->enginecore;
9797
engineserver-->enginecore;
9898
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lwc-monorepo",
3-
"version": "8.20.1",
3+
"version": "8.20.2",
44
"private": true,
55
"description": "Lightning Web Components",
66
"repository": {

packages/@lwc/aria-reflection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/aria-reflection",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "ARIA element reflection polyfill for strings",
99
"keywords": [
1010
"aom",

packages/@lwc/babel-plugin-component/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/babel-plugin-component",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "Babel plugin to transform a LWC module",
99
"keywords": [
1010
"lwc"
@@ -47,8 +47,8 @@
4747
},
4848
"dependencies": {
4949
"@babel/helper-module-imports": "7.27.1",
50-
"@lwc/errors": "8.20.1",
51-
"@lwc/shared": "8.20.1",
50+
"@lwc/errors": "8.20.2",
51+
"@lwc/shared": "8.20.2",
5252
"line-column": "~1.0.2"
5353
},
5454
"devDependencies": {

packages/@lwc/compiler/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/compiler",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "LWC compiler",
99
"keywords": [
1010
"lwc"
@@ -52,11 +52,11 @@
5252
"@babel/plugin-transform-class-properties": "7.27.1",
5353
"@babel/plugin-transform-object-rest-spread": "7.28.0",
5454
"@locker/babel-plugin-transform-unforgeables": "0.22.0",
55-
"@lwc/babel-plugin-component": "8.20.1",
56-
"@lwc/errors": "8.20.1",
57-
"@lwc/shared": "8.20.1",
58-
"@lwc/ssr-compiler": "8.20.1",
59-
"@lwc/style-compiler": "8.20.1",
60-
"@lwc/template-compiler": "8.20.1"
55+
"@lwc/babel-plugin-component": "8.20.2",
56+
"@lwc/errors": "8.20.2",
57+
"@lwc/shared": "8.20.2",
58+
"@lwc/ssr-compiler": "8.20.2",
59+
"@lwc/style-compiler": "8.20.2",
60+
"@lwc/template-compiler": "8.20.2"
6161
}
6262
}

packages/@lwc/engine-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/engine-core",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "Core LWC engine APIs.",
99
"keywords": [
1010
"lwc"
@@ -46,9 +46,9 @@
4646
}
4747
},
4848
"dependencies": {
49-
"@lwc/features": "8.20.1",
50-
"@lwc/shared": "8.20.1",
51-
"@lwc/signals": "8.20.1"
49+
"@lwc/features": "8.20.2",
50+
"@lwc/shared": "8.20.2",
51+
"@lwc/signals": "8.20.2"
5252
},
5353
"devDependencies": {
5454
"observable-membrane": "2.0.0"

packages/@lwc/engine-dom/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/engine-dom",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "Renders LWC components in a DOM environment.",
99
"keywords": [
1010
"lwc"
@@ -46,10 +46,10 @@
4646
}
4747
},
4848
"devDependencies": {
49-
"@lwc/engine-core": "8.20.1",
50-
"@lwc/shared": "8.20.1",
51-
"@lwc/features": "8.20.1",
52-
"@lwc/signals": "8.20.1"
49+
"@lwc/engine-core": "8.20.2",
50+
"@lwc/shared": "8.20.2",
51+
"@lwc/features": "8.20.2",
52+
"@lwc/signals": "8.20.2"
5353
},
5454
"lwc": {
5555
"modules": [

packages/@lwc/engine-server/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/engine-server",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "Renders LWC components in a server environment.",
99
"keywords": [
1010
"lwc"
@@ -46,11 +46,11 @@
4646
}
4747
},
4848
"devDependencies": {
49-
"@lwc/engine-core": "8.20.1",
50-
"@lwc/rollup-plugin": "8.20.1",
51-
"@lwc/shared": "8.20.1",
52-
"@lwc/features": "8.20.1",
53-
"@lwc/signals": "8.20.1",
49+
"@lwc/engine-core": "8.20.2",
50+
"@lwc/rollup-plugin": "8.20.2",
51+
"@lwc/shared": "8.20.2",
52+
"@lwc/features": "8.20.2",
53+
"@lwc/signals": "8.20.2",
5454
"@rollup/plugin-virtual": "^3.0.2",
5555
"parse5": "^8.0.0"
5656
}

packages/@lwc/errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/errors",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "LWC Error Utilities",
99
"keywords": [
1010
"lwc"

packages/@lwc/features/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/features",
7-
"version": "8.20.1",
7+
"version": "8.20.2",
88
"description": "LWC Features Flags",
99
"keywords": [
1010
"lwc"
@@ -46,6 +46,6 @@
4646
}
4747
},
4848
"dependencies": {
49-
"@lwc/shared": "8.20.1"
49+
"@lwc/shared": "8.20.2"
5050
}
5151
}

0 commit comments

Comments
 (0)