@workleap/browserslist-config 1.2.0 → 1.2.2
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/CHANGELOG.md +12 -0
- package/README.md +15 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +21 -9
- package/package.json +10 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @workleap/browserslist-config
|
|
2
2
|
|
|
3
|
+
## 1.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#85](https://github.com/workleap/wl-web-configs/pull/85) [`bad2df7`](https://github.com/workleap/wl-web-configs/commit/bad2df75593fb70d431d73bdced653b157c50caa) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated TSUP configuration and added a new SWC config package
|
|
8
|
+
|
|
9
|
+
## 1.2.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#74](https://github.com/workleap/wl-web-configs/pull/74) [`43c9eb1`](https://github.com/workleap/wl-web-configs/commit/43c9eb11e61896855666c44beb0e711c82a560a3) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Updated installation documentation
|
|
14
|
+
|
|
3
15
|
## 1.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @workleap/browserslist-config
|
|
2
|
+
|
|
2
3
|
Shareable [browserslist](https://github.com/browserslist/browserslist) configuration for Workleap.
|
|
3
4
|
|
|
4
5
|
[](../../LICENSE)
|
|
@@ -9,10 +10,23 @@ Shareable [browserslist](https://github.com/browserslist/browserslist) configura
|
|
|
9
10
|
Install the package.
|
|
10
11
|
|
|
11
12
|
**With pnpm**
|
|
13
|
+
|
|
12
14
|
```shell
|
|
13
15
|
pnpm add -D @workleap/browserslist-config
|
|
14
16
|
```
|
|
15
17
|
|
|
18
|
+
**With yarn**
|
|
19
|
+
|
|
20
|
+
```shell
|
|
21
|
+
yarn add -D @workleap/browserslist-config
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**With npm**
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
npm install -D @workleap/browserslist-config
|
|
28
|
+
```
|
|
29
|
+
|
|
16
30
|
## Supported Browsers
|
|
17
31
|
|
|
18
32
|
You can list all supported browsers by following this link:
|
package/dist/index.d.ts
ADDED
package/dist/index.js
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
5
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
// src/index.ts
|
|
9
|
+
var require_src = __commonJS({
|
|
10
|
+
"src/index.ts"(exports, module) {
|
|
11
|
+
var config = [
|
|
12
|
+
"last 2 versions",
|
|
13
|
+
"> 0.2%",
|
|
14
|
+
"Firefox ESR",
|
|
15
|
+
"not dead"
|
|
16
|
+
];
|
|
17
|
+
module.exports = config;
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
var index = require_src();
|
|
21
|
+
|
|
22
|
+
module.exports = index;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@workleap/browserslist-config",
|
|
3
3
|
"author": "Workleap",
|
|
4
4
|
"description": "Workleap recommended Browserslist config.",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.2",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"workleap",
|
|
@@ -13,8 +13,12 @@
|
|
|
13
13
|
"url": "git+https://github.com/workleap/wl-web-configs.git",
|
|
14
14
|
"directory": "packages/browserslist-config"
|
|
15
15
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"require": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
18
22
|
"files": [
|
|
19
23
|
"dist",
|
|
20
24
|
"CHANGELOG.md",
|
|
@@ -22,7 +26,9 @@
|
|
|
22
26
|
],
|
|
23
27
|
"devDependencies": {
|
|
24
28
|
"tsup": "6.7.0",
|
|
25
|
-
"@workleap/
|
|
29
|
+
"@workleap/eslint-plugin": "1.8.2",
|
|
30
|
+
"@workleap/tsup-configs": "2.0.0",
|
|
31
|
+
"@workleap/typescript-configs": "2.3.2"
|
|
26
32
|
},
|
|
27
33
|
"publishConfig": {
|
|
28
34
|
"access": "public",
|