browserslist-config-anolilab 2.3.0 → 3.0.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 CHANGED
@@ -1,3 +1,35 @@
1
+ ### browserslist-config-anolilab [3.0.2](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@3.0.1...browserslist-config-anolilab@3.0.2) (2022-05-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** upgraded deps in all packages ([091353c](https://github.com/anolilab/javascript-style-guide/commit/091353cdd01a0bb3d0e48da9266a6a2978283e2b))
7
+
8
+ ### browserslist-config-anolilab [3.0.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@3.0.0...browserslist-config-anolilab@3.0.1) (2022-02-15)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** updated all dependencies (non-major) ([6a4e889](https://github.com/anolilab/javascript-style-guide/commit/6a4e889bcdab9d11755b61850e7d24f9f4a0733f))
14
+
15
+ ## browserslist-config-anolilab [3.0.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.3.0...browserslist-config-anolilab@3.0.0) (2022-02-15)
16
+
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * remove old node version from our supported versions
21
+
22
+ Signed-off-by: prisis <d.bannert@anolilab.de>
23
+
24
+ ### Bug Fixes
25
+
26
+ * markdown lint ([24059d4](https://github.com/anolilab/javascript-style-guide/commit/24059d41ca682ca21b39ad7f6dff594be734329d))
27
+
28
+
29
+ ### Performance Improvements
30
+
31
+ * support for v12, v14 was removed from our supported versions of node ([83d6a80](https://github.com/anolilab/javascript-style-guide/commit/83d6a8058ed7791135aff03d4cd734327bb1b694))
32
+
1
33
  ## browserslist-config-anolilab [2.3.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@2.2.0...browserslist-config-anolilab@2.3.0) (2021-12-12)
2
34
 
3
35
 
package/README.md CHANGED
@@ -97,7 +97,7 @@ Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/expe
97
97
  ## Supported Node.js Versions
98
98
 
99
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
100
+ [Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
101
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
102
 
103
103
  Contributing
package/index.cjs CHANGED
@@ -1,16 +1,7 @@
1
1
  module.exports = {
2
- "production": [
3
- "> 1%",
4
- "last 2 versions",
5
- "Firefox ESR",
6
- "not dead"
7
- ],
8
- "legacyBrowsers": [
9
- "> 1%",
10
- "last 2 versions",
11
- "Firefox ESR"
12
- ],
13
- "modernBrowsers": [
2
+ production: ["> 1%", "last 2 versions", "Firefox ESR", "not dead"],
3
+ legacyBrowsers: ["> 1%", "last 2 versions", "Firefox ESR"],
4
+ modernBrowsers: [
14
5
  "last 2 Chrome versions",
15
6
  "not Chrome < 60",
16
7
  "last 2 Safari versions",
@@ -20,9 +11,7 @@ module.exports = {
20
11
  "last 2 Firefox versions",
21
12
  "not Firefox < 54",
22
13
  "last 2 Edge versions",
23
- "not Edge < 15"
14
+ "not Edge < 15",
24
15
  ],
25
- "ssr": [
26
- "node 12"
27
- ]
16
+ ssr: ["node 12"],
28
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "2.3.0",
3
+ "version": "3.0.2",
4
4
  "description": "Shareable browserlist config for Anolilab.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -38,11 +38,11 @@
38
38
  "LICENSE.md"
39
39
  ],
40
40
  "devDependencies": {
41
- "browserslist": "4.18.1",
42
- "caniuse-lite": "^1.0.30001286"
41
+ "browserslist": "4.20.3",
42
+ "caniuse-lite": "^1.0.30001331"
43
43
  },
44
44
  "engines": {
45
- "node": ">=12"
45
+ "node": ">=16"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"