@lwc/synthetic-shadow 2.23.2 → 2.23.4
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/synthetic-shadow.js +3 -3
- package/package.json +13 -5
package/dist/synthetic-shadow.js
CHANGED
@@ -148,7 +148,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
|
|
148
148
|
// We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
|
149
149
|
// we can't use typeof since it will fail when transpiling.
|
150
150
|
const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
|
151
|
-
/** version: 2.23.
|
151
|
+
/** version: 2.23.4 */
|
152
152
|
|
153
153
|
/*
|
154
154
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -1124,7 +1124,7 @@ if (!_globalThis.lwcRuntimeFlags) {
|
|
1124
1124
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
1125
1125
|
}
|
1126
1126
|
const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
|
1127
|
-
/** version: 2.23.
|
1127
|
+
/** version: 2.23.4 */
|
1128
1128
|
|
1129
1129
|
/*
|
1130
1130
|
* Copyright (c) 2018, salesforce.com, inc.
|
@@ -5114,4 +5114,4 @@ if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
|
|
5114
5114
|
}));
|
5115
5115
|
});
|
5116
5116
|
}
|
5117
|
-
/** version: 2.23.
|
5117
|
+
/** version: 2.23.4 */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lwc/synthetic-shadow",
|
3
|
-
"version": "2.23.
|
3
|
+
"version": "2.23.4",
|
4
4
|
"description": "Synthetic Shadow Root for LWC",
|
5
5
|
"homepage": "https://lwc.dev/",
|
6
6
|
"repository": {
|
@@ -15,7 +15,6 @@
|
|
15
15
|
"main": "index.js",
|
16
16
|
"module": "dist/synthetic-shadow.js",
|
17
17
|
"scripts": {
|
18
|
-
"clean": "rm -rf dist/",
|
19
18
|
"build": "rollup --config ./scripts/rollup/rollup.config.js",
|
20
19
|
"dev": "rollup --config scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
|
21
20
|
},
|
@@ -37,7 +36,16 @@
|
|
37
36
|
"access": "public"
|
38
37
|
},
|
39
38
|
"devDependencies": {
|
40
|
-
"@lwc/features": "2.23.
|
41
|
-
"@lwc/shared": "2.23.
|
39
|
+
"@lwc/features": "2.23.4",
|
40
|
+
"@lwc/shared": "2.23.4"
|
41
|
+
},
|
42
|
+
"nx": {
|
43
|
+
"targets": {
|
44
|
+
"build": {
|
45
|
+
"outputs": [
|
46
|
+
"./dist"
|
47
|
+
]
|
48
|
+
}
|
49
|
+
}
|
42
50
|
}
|
43
|
-
}
|
51
|
+
}
|