@lwc/synthetic-shadow 2.11.3 → 2.13.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.
@@ -146,7 +146,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
146
146
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
147
147
  // we can't use typeof since it will fail when transpiling.
148
148
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
149
- /** version: 2.11.3 */
149
+ /** version: 2.13.0 */
150
150
 
151
151
  /*
152
152
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1300,7 +1300,7 @@ if (!_globalThis.lwcRuntimeFlags) {
1300
1300
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1301
1301
  }
1302
1302
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1303
- /** version: 2.11.3 */
1303
+ /** version: 2.13.0 */
1304
1304
 
1305
1305
  /*
1306
1306
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5066,4 +5066,4 @@ defineProperty(Element.prototype, '$domManual$', {
5066
5066
  },
5067
5067
  configurable: true,
5068
5068
  });
5069
- /** version: 2.11.3 */
5069
+ /** version: 2.13.0 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwc/synthetic-shadow",
3
- "version": "2.11.3",
3
+ "version": "2.13.0",
4
4
  "description": "Synthetic Shadow Root for LWC",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -16,7 +16,8 @@
16
16
  "module": "dist/synthetic-shadow.js",
17
17
  "scripts": {
18
18
  "clean": "rm -rf dist/",
19
- "build": "rollup --config ./scripts/rollup/rollup.config.js"
19
+ "build": "rollup --config ./scripts/rollup/rollup.config.js",
20
+ "dev": "rollup --config scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
20
21
  },
21
22
  "files": [
22
23
  "dist/"
@@ -36,7 +37,7 @@
36
37
  "access": "public"
37
38
  },
38
39
  "devDependencies": {
39
- "@lwc/features": "2.11.3",
40
- "@lwc/shared": "2.11.3"
40
+ "@lwc/features": "2.13.0",
41
+ "@lwc/shared": "2.13.0"
41
42
  }
42
43
  }