@pushwoosh/frontend-builder-engine 3.1.0 → 3.1.1
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/lib/browser-targets.js +9 -0
- package/package.json +1 -1
package/lib/browser-targets.js
CHANGED
|
@@ -27,6 +27,15 @@
|
|
|
27
27
|
* - Below Chrome/Edge 91 it enables
|
|
28
28
|
* plugin-bugfix-v8-spread-parameters-in-optional-chaining, which downlevels
|
|
29
29
|
* every `?.` in the bundle.
|
|
30
|
+
* - Below Safari/iOS 16 it enables
|
|
31
|
+
* plugin-bugfix-safari-class-field-initializer-scope, wrapping initializers
|
|
32
|
+
* that resolve to a bare identifier reference (through calls, member access,
|
|
33
|
+
* arrays, objects, or templates) in an IIFE; literals, `this`, and
|
|
34
|
+
* function/arrow/class expressions are left alone. It guards WebKit 236843,
|
|
35
|
+
* which fires only on redundant parentheses inside the initializer; Babel
|
|
36
|
+
* wraps blindly because its default AST drops them. To check an artifact for
|
|
37
|
+
* real exposure, parse it with `createParenthesizedExpressions: true` and
|
|
38
|
+
* look for ParenthesizedExpression under ClassProperty/ClassPrivateProperty.
|
|
30
39
|
*/
|
|
31
40
|
const BROWSER_TARGETS = [
|
|
32
41
|
'Chrome >= 94',
|