browserslist-config-anolilab 2.1.1 → 2.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +36 -0
  3. package/package.json +19 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## browserslist-config-anolilab [2.2.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.1.4...browserslist-config-anolilab@2.2.0) (2021-10-26)
2
+
3
+
4
+ ### Features
5
+
6
+ * updated all deps ([0320055](https://github.com/anolilab/javascript-style-guide/commit/0320055caf8301a6c3bf06cff6ee58578b9ceae5))
7
+
8
+ ### browserslist-config-anolilab [2.1.4](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.1.3...browserslist-config-anolilab@2.1.4) (2021-09-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * added funding to the package ([f90d18f](https://github.com/anolilab/javascript-style-guide/commit/f90d18f8347a4bdc395b1740c85ac74a4072297c))
14
+
15
+ ### browserslist-config-anolilab [2.1.3](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.1.2...browserslist-config-anolilab@2.1.3) (2021-09-02)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * fixed release flow in all packages ([8c5ec13](https://github.com/anolilab/javascript-style-guide/commit/8c5ec1341e11ccf48d8d3e8f8808fb162d062d97))
21
+
22
+ ### browserslist-config-anolilab [2.1.2](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.1.1...browserslist-config-anolilab@2.1.2) (2021-08-17)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * upgraded deps and upgraded yarn to v3.0.1 ([98293bc](https://github.com/anolilab/javascript-style-guide/commit/98293bc493d22149bf84c58382dfc7ef50b73ab1))
28
+
1
29
  ### browserslist-config-anolilab [2.1.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.1.0...browserslist-config-anolilab@2.1.1) (2021-07-21)
2
30
 
3
31
 
package/README.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  This configuration reflects Growcss’s supported browser policy for their UI library and build tools.
4
4
 
5
+ ---
6
+
7
+ <div align="center">
8
+ <p>
9
+ <sup>
10
+ Daniel Bannert's open source work is supported by the community on <a href="https://github.com/sponsors/prisis">GitHub Sponsors</a>
11
+ </sup>
12
+ </p>
13
+ </div>
14
+
15
+ ---
16
+
5
17
  ## What is Browserslist?
6
18
 
7
19
  [Browserslist](https://github.com/browserslist/browserslist) is a library to share a browsers list between different front end tools, like Autoprefixer, Eslint, and Stylelint.
@@ -81,3 +93,27 @@ Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/expe
81
93
  ];
82
94
  }
83
95
  ```
96
+
97
+ ## Supported Node.js Versions
98
+
99
+ Libraries in this ecosystem make the best effort to track
100
+ [Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
101
+ post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
102
+
103
+ Contributing
104
+ ------------
105
+
106
+ If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guild.
107
+
108
+ > **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
109
+
110
+ Credits
111
+ -------------
112
+
113
+ - [Daniel Bannert](https://github.com/prisis)
114
+ - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
115
+
116
+ License
117
+ -------------
118
+
119
+ The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "2.1.1",
3
+ "version": "2.2.0",
4
4
  "description": "Shareable browserlist config for Anolilab.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -8,8 +8,22 @@
8
8
  "anolilab",
9
9
  "browsers"
10
10
  ],
11
- "homepage": "http://anolilab.com/nodejs/packages/browserslist-config",
12
- "repository": "https://github.com/anolilab/javascript-style-guide.git",
11
+ "homepage": "https://anolilab.com/nodejs/packages/browserslist-config",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/anolilab/javascript-style-guide.git",
15
+ "directory": "packages/browserslist-config-anolilab"
16
+ },
17
+ "funding": [
18
+ {
19
+ "type": "github",
20
+ "url": "https://github.com/sponsors/prisis"
21
+ },
22
+ {
23
+ "type": "consulting",
24
+ "url": "https://anolilab.com/support"
25
+ }
26
+ ],
13
27
  "license": "MIT",
14
28
  "author": {
15
29
  "name": "Daniel Bannert",
@@ -24,8 +38,8 @@
24
38
  "LICENSE.md"
25
39
  ],
26
40
  "devDependencies": {
27
- "browserslist": "4.16.6",
28
- "caniuse-lite": "^1.0.30001246"
41
+ "browserslist": "4.17.5",
42
+ "caniuse-lite": "^1.0.30001271"
29
43
  },
30
44
  "engines": {
31
45
  "node": ">=12"