@workleap/browserslist-config 1.0.0 → 1.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/CHANGELOG.md +12 -0
- package/README.md +1 -11
- package/dist/index.js +7 -6
- package/package.json +16 -5
- package/dist/index.d.ts +0 -2
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @workleap/browserslist-config
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#14](https://github.com/workleap/wl-web-configs/pull/14) [`3da3332`](https://github.com/workleap/wl-web-configs/commit/3da33327fd24874b9f26568f54d4dad0941753c2) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Update the package.json to update repository url
|
|
8
|
+
|
|
9
|
+
## 1.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#9](https://github.com/workleap/wl-web-configs/pull/9) [`d4365f6`](https://github.com/workleap/wl-web-configs/commit/d4365f63033989ac4d7358186c188175d5ef60e9) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Updated the documentation
|
|
14
|
+
|
|
3
15
|
## 1.0.0
|
|
4
16
|
|
|
5
17
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -13,16 +13,6 @@ Install the package.
|
|
|
13
13
|
pnpm add -D @workleap/browserslist-config
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
**With npm**
|
|
17
|
-
```shell
|
|
18
|
-
npm i --save-dev @workleap/browserslist-config
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
**With yarn**
|
|
22
|
-
```shell
|
|
23
|
-
yarn add --dev @workleap/browserslist-config
|
|
24
|
-
```
|
|
25
|
-
|
|
26
16
|
## Supported Browsers
|
|
27
17
|
|
|
28
18
|
You can list all supported browsers by following this link:
|
|
@@ -37,4 +27,4 @@ extends @workleap/browserslist-config
|
|
|
37
27
|
|
|
38
28
|
## License
|
|
39
29
|
|
|
40
|
-
Copyright © 2023, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.
|
|
30
|
+
Copyright © 2023, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
|
|
3
|
+
// index.ts
|
|
4
|
+
var config = [
|
|
5
|
+
"last 2 versions",
|
|
6
|
+
"> 0.2%",
|
|
7
|
+
"Firefox ESR",
|
|
8
|
+
"not dead"
|
|
7
9
|
];
|
|
8
10
|
module.exports = config;
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
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.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"workleap",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
],
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/
|
|
13
|
+
"url": "git+https://github.com/workleap/wl-web-configs.git",
|
|
14
14
|
"directory": "packages/browserslist-config"
|
|
15
15
|
},
|
|
16
16
|
"main": "./dist/index.js",
|
|
@@ -21,13 +21,24 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@workleap/typescript-configs": "
|
|
24
|
+
"@workleap/typescript-configs": "2.0.1"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
27
|
+
"access": "public",
|
|
28
|
+
"provenance": true
|
|
29
|
+
},
|
|
30
|
+
"tsup": {
|
|
31
|
+
"entry": [
|
|
32
|
+
"./index.ts"
|
|
33
|
+
],
|
|
34
|
+
"clean": true,
|
|
35
|
+
"declaration": true,
|
|
36
|
+
"format": [
|
|
37
|
+
"cjs"
|
|
38
|
+
]
|
|
28
39
|
},
|
|
29
40
|
"scripts": {
|
|
30
|
-
"build": "
|
|
41
|
+
"build": "tsup",
|
|
31
42
|
"clean": "pnpm dlx rimraf dist node_modules",
|
|
32
43
|
"lint:types": "tsc --noEmit"
|
|
33
44
|
}
|
package/dist/index.d.ts
DELETED
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,MAAM,MAAM,GAAsB;IAC9B,iBAAiB;IACjB,QAAQ;IACR,aAAa;IACb,UAAU;CACb,CAAC;AAEF,iBAAS,MAAM,CAAC"}
|