lwc 8.1.2 → 8.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -75,3 +75,7 @@ This is equivalent to:
75
75
  ```js
76
76
  import { renderComponent } from '@lwc/engine-server';
77
77
  ```
78
+
79
+ ## Experimental Packages
80
+
81
+ The `@lwc/ssr-compiler` and `@lwc/ssr-runtime` packages are still considered experimental, and may break without notice.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lwc",
3
- "version": "8.1.2",
3
+ "version": "8.2.0",
4
4
  "description": "Lightning Web Components (LWC)",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -21,22 +21,24 @@
21
21
  "!vitest.config.*"
22
22
  ],
23
23
  "dependencies": {
24
- "@lwc/aria-reflection": "8.1.2",
25
- "@lwc/babel-plugin-component": "8.1.2",
26
- "@lwc/compiler": "8.1.2",
27
- "@lwc/engine-core": "8.1.2",
28
- "@lwc/engine-dom": "8.1.2",
29
- "@lwc/engine-server": "8.1.2",
30
- "@lwc/errors": "8.1.2",
31
- "@lwc/features": "8.1.2",
32
- "@lwc/module-resolver": "8.1.2",
33
- "@lwc/rollup-plugin": "8.1.2",
34
- "@lwc/shared": "8.1.2",
35
- "@lwc/style-compiler": "8.1.2",
36
- "@lwc/synthetic-shadow": "8.1.2",
37
- "@lwc/template-compiler": "8.1.2",
38
- "@lwc/types": "8.1.2",
39
- "@lwc/wire-service": "8.1.2"
24
+ "@lwc/aria-reflection": "8.2.0",
25
+ "@lwc/babel-plugin-component": "8.2.0",
26
+ "@lwc/compiler": "8.2.0",
27
+ "@lwc/engine-core": "8.2.0",
28
+ "@lwc/engine-dom": "8.2.0",
29
+ "@lwc/engine-server": "8.2.0",
30
+ "@lwc/errors": "8.2.0",
31
+ "@lwc/features": "8.2.0",
32
+ "@lwc/module-resolver": "8.2.0",
33
+ "@lwc/rollup-plugin": "8.2.0",
34
+ "@lwc/shared": "8.2.0",
35
+ "@lwc/ssr-compiler": "8.2.0",
36
+ "@lwc/ssr-runtime": "8.2.0",
37
+ "@lwc/style-compiler": "8.2.0",
38
+ "@lwc/synthetic-shadow": "8.2.0",
39
+ "@lwc/template-compiler": "8.2.0",
40
+ "@lwc/types": "8.2.0",
41
+ "@lwc/wire-service": "8.2.0"
40
42
  },
41
43
  "lwc": {
42
44
  "modules": [
@@ -68,6 +70,8 @@
68
70
  "./module-resolver": "./module-resolver.js",
69
71
  "./rollup-plugin": "./rollup-plugin.js",
70
72
  "./shared": "./shared.js",
73
+ "./ssr-compiler": "./ssr-compiler.js",
74
+ "./ssr-runtime": "./ssr-runtime.js",
71
75
  "./style-compiler": "./style-compiler.js",
72
76
  "./synthetic-shadow": "./synthetic-shadow.js",
73
77
  "./template-compiler": "./template-compiler.js",
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: MIT
5
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6
+ */
7
+ export type * from '@lwc/ssr-compiler';
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: MIT
5
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6
+ */
7
+ export * from '@lwc/ssr-compiler';
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: MIT
5
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6
+ */
7
+ export type * from '@lwc/ssr-runtime';
package/ssr-runtime.js ADDED
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: MIT
5
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6
+ */
7
+ export * from '@lwc/ssr-runtime';