@anolilab/prettier-config 2.0.6 → 3.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 +18 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## @anolilab/prettier-config [3.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@2.0.6...@anolilab/prettier-config@3.0.0) (2022-02-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* remove old node version from our supported versions
|
|
7
|
+
|
|
8
|
+
Signed-off-by: prisis <d.bannert@anolilab.de>
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* markdown lint ([24059d4](https://github.com/anolilab/javascript-style-guide/commit/24059d41ca682ca21b39ad7f6dff594be734329d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Performance Improvements
|
|
16
|
+
|
|
17
|
+
* support for v12, v14 was removed from our supported versions of node ([83d6a80](https://github.com/anolilab/javascript-style-guide/commit/83d6a8058ed7791135aff03d4cd734327bb1b694))
|
|
18
|
+
|
|
1
19
|
### @anolilab/prettier-config [2.0.6](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@2.0.5...@anolilab/prettier-config@2.0.6) (2022-01-12)
|
|
2
20
|
|
|
3
21
|
|
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ module.exports = {
|
|
|
55
55
|
## Supported Node.js Versions
|
|
56
56
|
|
|
57
57
|
Libraries in this ecosystem make the best effort to track
|
|
58
|
-
[Node.js
|
|
58
|
+
[Node.js’ release schedule](https://nodejs.org/en/about/releases/). Here’s [a
|
|
59
59
|
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
60
60
|
|
|
61
61
|
Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/prettier-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Prettier shareable config for Anolilab.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"prettier": "2.x"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
|
-
"node": ">=
|
|
50
|
+
"node": ">=16"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|