@dr.pogodin/react-utils 1.40.7 → 1.40.8
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/config/babel/webpack.js
CHANGED
|
@@ -26,8 +26,8 @@ function newBaseConfig(options) {
|
|
|
26
26
|
['@babel/env', {
|
|
27
27
|
// Leaves it to the Webpack to deal with modules.
|
|
28
28
|
modules: (_a = options.modules) !== null && _a !== void 0 ? _a : false,
|
|
29
|
-
// Chrome
|
|
30
|
-
targets: options.targets || 'defaults or chrome >=
|
|
29
|
+
// Chrome 69 is the browser/WebView for Android 9 (API level 28).
|
|
30
|
+
targets: options.targets || 'defaults or chrome >= 69',
|
|
31
31
|
}],
|
|
32
32
|
// TODO: Starting from Babel 8, "automatic" will be the default runtime,
|
|
33
33
|
// thus once upgraded to Babel 8, runtime should be removed from
|
package/package.json
CHANGED