@lipemat/js-boilerplate 10.10.0 → 10.10.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/helpers/config.js +1 -3
- package/helpers/config.ts +1 -3
- package/package.json +1 -1
package/helpers/config.js
CHANGED
|
@@ -192,10 +192,8 @@ const getDefaultBrowsersList = () => {
|
|
|
192
192
|
exports.getDefaultBrowsersList = getDefaultBrowsersList;
|
|
193
193
|
/**
|
|
194
194
|
* Adjust the browserslist to include our defaults.
|
|
195
|
-
*
|
|
196
|
-
* @todo Remove `not op_mini all` after 3/8/2024 if it does not creep back in to the defaults.
|
|
197
195
|
*/
|
|
198
196
|
function adjustBrowserslist(browserRules) {
|
|
199
|
-
browserRules.push('not
|
|
197
|
+
browserRules.push('not and_uc 15.5');
|
|
200
198
|
return browserRules;
|
|
201
199
|
}
|
package/helpers/config.ts
CHANGED
|
@@ -212,10 +212,8 @@ export const getDefaultBrowsersList = (): false | string[] => {
|
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
214
|
* Adjust the browserslist to include our defaults.
|
|
215
|
-
*
|
|
216
|
-
* @todo Remove `not op_mini all` after 3/8/2024 if it does not creep back in to the defaults.
|
|
217
215
|
*/
|
|
218
216
|
export function adjustBrowserslist( browserRules: string[] ): string[] {
|
|
219
|
-
browserRules.push( 'not
|
|
217
|
+
browserRules.push( 'not and_uc 15.5' );
|
|
220
218
|
return browserRules;
|
|
221
219
|
}
|