@taiga-ui/browserslist-config 0.394.0 → 0.397.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.
package/index.cjs.js ADDED
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var index = [
4
+ 'ChromeAndroid >= 107',
5
+ 'Chrome >= 107',
6
+ 'Edge >= 107',
7
+ 'Opera >= 93',
8
+ 'OperaMobile >= 73',
9
+ 'iOS >= 14.5',
10
+ 'Safari >= 14.1',
11
+ 'Samsung >= 21',
12
+ 'Firefox >= 128',
13
+ 'FirefoxAndroid >= 128',
14
+ ];
15
+
16
+ module.exports = index;
package/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const config: string[];
2
- export default config;
1
+ declare const _default: string[];
2
+ export default _default;
@@ -1,4 +1,4 @@
1
- export default [
1
+ var index = [
2
2
  'ChromeAndroid >= 107',
3
3
  'Chrome >= 107',
4
4
  'Edge >= 107',
@@ -10,3 +10,5 @@ export default [
10
10
  'Firefox >= 128',
11
11
  'FirefoxAndroid >= 128',
12
12
  ];
13
+
14
+ export { index as default };
package/package.json CHANGED
@@ -1,24 +1,27 @@
1
1
  {
2
- "name": "@taiga-ui/browserslist-config",
3
- "version": "0.394.0",
4
- "description": "Taiga UI browserslist config",
5
- "keywords": [
6
- "browserslist"
7
- ],
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/taiga-family/configurations.git"
2
+ "name": "@taiga-ui/browserslist-config",
3
+ "version": "0.397.0",
4
+ "description": "Taiga UI browserslist config",
5
+ "keywords": [
6
+ "browserslist"
7
+ ],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/taiga-family/configurations.git"
11
+ },
12
+ "license": "Apache-2.0",
13
+ "type": "module",
14
+ "exports": {
15
+ ".": {
16
+ "import": "./index.esm.js",
17
+ "types": "./index.d.ts"
11
18
  },
12
- "license": "Apache-2.0",
13
- "type": "module",
14
- "exports": {
15
- ".": {
16
- "types": "./index.d.ts",
17
- "default": "./index.js"
18
- }
19
- },
20
- "types": "./index.d.ts",
21
- "publishConfig": {
22
- "access": "public"
23
- }
24
- }
19
+ "./package.json": "./package.json"
20
+ },
21
+ "types": "./index.d.ts",
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "module": "./index.esm.js",
26
+ "main": "./index.esm.js"
27
+ }