browserslist-config-anolilab 4.2.0 → 5.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 +42 -0
- package/README.md +3 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
## browserslist-config-anolilab [5.0.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.2.1...browserslist-config-anolilab@5.0.0) (2023-07-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* fixing broken releases that semantic-release did create
|
|
7
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fixed broken releases ([d46de22](https://github.com/anolilab/javascript-style-guide/commit/d46de22a999cc09cc46f9a4d4e7682441705a861))
|
|
12
|
+
* update node version ([9a22309](https://github.com/anolilab/javascript-style-guide/commit/9a22309775cd2219320eed903ac3e22f66ffbe94))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* Update devDependencies in package.json ([eee78cd](https://github.com/anolilab/javascript-style-guide/commit/eee78cd1cb1395a9f16dd5395f7e28ac79942dfe))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* **@anolilab/semantic-release-preset:** upgraded to 6.0.1
|
|
24
|
+
|
|
25
|
+
## browserslist-config-anolilab [4.2.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.2.0...browserslist-config-anolilab@4.2.1) (2023-07-05)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* Refactor async functions to use async/await and update tsconfig.json ([2a59d6e](https://github.com/anolilab/javascript-style-guide/commit/2a59d6e0d06a5a37c92b222961acbe9f17578f26))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Miscellaneous Chores
|
|
34
|
+
|
|
35
|
+
* **deps:** update dependency caniuse-lite to ^1.0.30001512 ([e2adc75](https://github.com/anolilab/javascript-style-guide/commit/e2adc75b63ffd11ff2905105905a17c730d8dd35))
|
|
36
|
+
* Reorganize Prettier config and update README examples ([cc2a4be](https://github.com/anolilab/javascript-style-guide/commit/cc2a4be9a223c722fcec370a8260028cc5f6fbd0))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Dependencies
|
|
40
|
+
|
|
41
|
+
* **@anolilab/semantic-release-preset:** upgraded to 5.0.1
|
|
42
|
+
|
|
1
43
|
## browserslist-config-anolilab [4.2.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.1.3...browserslist-config-anolilab@4.2.0) (2023-07-03)
|
|
2
44
|
|
|
3
45
|
|
package/README.md
CHANGED
|
@@ -78,17 +78,18 @@ extends browserslist-config-anolilab
|
|
|
78
78
|
Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/experimental/babel-preset-env)
|
|
79
79
|
|
|
80
80
|
```js
|
|
81
|
-
{
|
|
81
|
+
module.exports = {
|
|
82
82
|
presets: [
|
|
83
83
|
[
|
|
84
84
|
'env',
|
|
85
85
|
{
|
|
86
86
|
targets: {
|
|
87
|
+
// eslint-disable-next-line global-require
|
|
87
88
|
browsers: require('browserslist-config-anolilab'),
|
|
88
89
|
},
|
|
89
90
|
},
|
|
90
91
|
],
|
|
91
|
-
]
|
|
92
|
+
],
|
|
92
93
|
}
|
|
93
94
|
```
|
|
94
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist-config-anolilab",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Shareable browserlist config for Anolilab projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browserslist",
|
|
@@ -59,17 +59,17 @@
|
|
|
59
59
|
"test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@anolilab/semantic-release-preset": "
|
|
62
|
+
"@anolilab/semantic-release-preset": "6.0.1",
|
|
63
63
|
"browserslist": "4.21.9",
|
|
64
|
-
"caniuse-lite": "^1.0.
|
|
64
|
+
"caniuse-lite": "^1.0.30001516",
|
|
65
65
|
"cross-env": "^7.0.3",
|
|
66
66
|
"rimraf": "^5.0.1",
|
|
67
|
-
"semantic-release": "^21.0.
|
|
67
|
+
"semantic-release": "^21.0.7",
|
|
68
68
|
"tsup": "^7.1.0",
|
|
69
|
-
"vitest": "^0.
|
|
69
|
+
"vitest": "^0.33.0"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"access": "public",
|