@workleap/browserslist-config 0.0.0 → 1.0.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/CHANGELOG.md +7 -0
- package/README.md +38 -1
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @workleap/browserslist-config
|
|
2
|
+
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#2](https://github.com/workleap/wl-web-configs/pull/2) [`9d18deb`](https://github.com/workleap/wl-web-configs/commit/9d18debcaa1704806b04f7045789823245fd1c9b) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Initial commit of the package
|
package/README.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
1
|
# `@workleap/browserslist-config`
|
|
2
|
+
Shareable [browserslist](https://github.com/browserslist/browserslist) configuration for Workleap.
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
[](../../LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@workleap/browserslist-config)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Install the package.
|
|
10
|
+
|
|
11
|
+
**With pnpm**
|
|
12
|
+
```shell
|
|
13
|
+
pnpm add -D @workleap/browserslist-config
|
|
14
|
+
```
|
|
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
|
+
## Supported Browsers
|
|
27
|
+
|
|
28
|
+
You can list all supported browsers by following this link:
|
|
29
|
+
https://browsersl.ist/#q=%3E+0.2%25%2C+last+2+versions%2C+Firefox+ESR%2C+not+dead
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
Create a `.browserslistrc` file at the root of your project with the following content:
|
|
34
|
+
```
|
|
35
|
+
extends @workleap/browserslist-config
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
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.
|
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": "
|
|
5
|
+
"version": "1.0.0",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"workleap",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@workleap/typescript-configs": "
|
|
24
|
+
"@workleap/typescript-configs": "1.0.0"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|