@lwc/engine-core 2.23.2 → 2.23.3
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/dist/engine-core.cjs.js +1 -1
- package/dist/engine-core.js +1 -1
- package/package.json +14 -5
package/dist/engine-core.cjs.js
CHANGED
package/dist/engine-core.js
CHANGED
|
@@ -6620,4 +6620,4 @@ function getComponentConstructor(elm) {
|
|
|
6620
6620
|
}
|
|
6621
6621
|
|
|
6622
6622
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, connectRootElement, createContextProvider, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, getUpgradableConstructor, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, sanitizeAttribute, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
6623
|
-
/* version: 2.23.
|
|
6623
|
+
/* version: 2.23.3 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.3",
|
|
4
4
|
"description": "Core LWC engine APIs.",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"typings": "types/index.d.ts",
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"scripts": {
|
|
19
|
-
"clean": "rm -rf dist/ types/",
|
|
20
19
|
"build": "rollup --config scripts/rollup.config.js",
|
|
21
20
|
"dev": "rollup --config scripts/rollup.config.js --watch --no-watch.clearScreen"
|
|
22
21
|
},
|
|
@@ -25,13 +24,23 @@
|
|
|
25
24
|
"types/"
|
|
26
25
|
],
|
|
27
26
|
"dependencies": {
|
|
28
|
-
"@lwc/features": "2.23.
|
|
29
|
-
"@lwc/shared": "2.23.
|
|
27
|
+
"@lwc/features": "2.23.3",
|
|
28
|
+
"@lwc/shared": "2.23.3"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
32
31
|
"observable-membrane": "2.0.0"
|
|
33
32
|
},
|
|
34
33
|
"publishConfig": {
|
|
35
34
|
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"nx": {
|
|
37
|
+
"targets": {
|
|
38
|
+
"build": {
|
|
39
|
+
"outputs": [
|
|
40
|
+
"./dist",
|
|
41
|
+
"./types"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
}
|
|
36
45
|
}
|
|
37
|
-
}
|
|
46
|
+
}
|