@anolilab/prettier-config 6.0.8 → 8.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 +23 -2
- package/README.md +49 -21
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,30 @@
|
|
|
1
|
+
## @anolilab/prettier-config [8.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@7.0.0...@anolilab/prettier-config@8.0.0) (2025-12-22)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package versions and configurations ([ad6cb2c](https://github.com/anolilab/javascript-style-guide/commit/ad6cb2c90ed4049ea8f136c583c0db1e477b20e7))
|
|
6
|
+
|
|
7
|
+
### Styles
|
|
8
|
+
|
|
9
|
+
* update package configurations and dependencies ([98475c5](https://github.com/anolilab/javascript-style-guide/commit/98475c5e5e7bc5d832ef10d3d723f75340223347))
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* update configuration and scripts ([5d6a44f](https://github.com/anolilab/javascript-style-guide/commit/5d6a44f99568b5f67939dfc52047fa742fd2bf58))
|
|
14
|
+
|
|
15
|
+
## @anolilab/prettier-config [7.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@6.0.8...@anolilab/prettier-config@7.0.0) (2025-12-10)
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
- remove deprecated packages and update repository URLs ([0a3d423](https://github.com/anolilab/javascript-style-guide/commit/0a3d42307102047ac98d6a0c0ce46c7dfe5a6446))
|
|
20
|
+
- update package dependencies and configurations ([94cb27e](https://github.com/anolilab/javascript-style-guide/commit/94cb27ed8989ba2c052bc6f61cd349ea9a3486d2))
|
|
21
|
+
|
|
1
22
|
## @anolilab/prettier-config [6.0.8](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@6.0.7...@anolilab/prettier-config@6.0.8) (2025-11-16)
|
|
2
23
|
|
|
3
24
|
### Bug Fixes
|
|
4
25
|
|
|
5
|
-
|
|
6
|
-
|
|
26
|
+
- **deps:** update node engine compatibility and upgrade dependencies ([1a0d0e1](https://github.com/anolilab/javascript-style-guide/commit/1a0d0e16d48dd2fb67017cdf3f21988d6adf1cdc))
|
|
27
|
+
- **deps:** update package versions and configurations ([e5b9cb5](https://github.com/anolilab/javascript-style-guide/commit/e5b9cb5195c4a9a4a481e9eb967fc5a0f92e1add))
|
|
7
28
|
|
|
8
29
|
## @anolilab/prettier-config [6.0.7](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@6.0.6...@anolilab/prettier-config@6.0.7) (2025-10-14)
|
|
9
30
|
|
package/README.md
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
<!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
2
|
+
|
|
3
|
+
<a href="https://github.com/anolilab/semantic-release" align="center">
|
|
4
|
+
|
|
5
|
+
<img src="__assets__/package-og.svg" alt="prettier-config" />
|
|
6
|
+
|
|
7
|
+
</a>
|
|
2
8
|
|
|
3
|
-
<
|
|
9
|
+
<h3 align="center">Prettier shareable config for Anolilab.</h3>
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
<!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
|
|
12
|
+
|
|
13
|
+
<br />
|
|
14
|
+
|
|
15
|
+
<div align="center">
|
|
6
16
|
|
|
7
|
-
[![typescript-image]
|
|
17
|
+
[![typescript-image][typescript-badge]][typescript-url]
|
|
18
|
+
[![mit licence][license-badge]][license]
|
|
19
|
+
[![npm downloads][npm-downloads-badge]][npm-downloads]
|
|
20
|
+
[![Chat][chat-badge]][chat]
|
|
21
|
+
[![PRs Welcome][prs-welcome-badge]][prs-welcome]
|
|
8
22
|
|
|
9
23
|
</div>
|
|
10
24
|
|
|
@@ -22,21 +36,21 @@ Package that contains shareable configuration for [prettier](https://github.com/
|
|
|
22
36
|
|
|
23
37
|
## Install
|
|
24
38
|
|
|
25
|
-
```
|
|
26
|
-
npm install
|
|
39
|
+
```sh
|
|
40
|
+
npm install @anolilab/prettier-config
|
|
27
41
|
```
|
|
28
42
|
|
|
29
43
|
```sh
|
|
30
|
-
yarn add
|
|
44
|
+
yarn add @anolilab/prettier-config
|
|
31
45
|
```
|
|
32
46
|
|
|
33
47
|
```sh
|
|
34
|
-
pnpm add
|
|
48
|
+
pnpm add @anolilab/prettier-config
|
|
35
49
|
```
|
|
36
50
|
|
|
37
51
|
## Usage
|
|
38
52
|
|
|
39
|
-
If you don
|
|
53
|
+
If you don't have a `.prettierrc.js` or the other supported file names and `.prettierignore`, we can create the file for you after installing `@anolilab/prettier-config`, call `pnpm prettier-config:install`.
|
|
40
54
|
|
|
41
55
|
> Note: If the script detects an existing `.prettierrc.js` file, it will not overwrite it.
|
|
42
56
|
|
|
@@ -87,30 +101,44 @@ module.exports = {
|
|
|
87
101
|
|
|
88
102
|
</details>
|
|
89
103
|
|
|
104
|
+
## Related
|
|
105
|
+
|
|
90
106
|
## Supported Node.js Versions
|
|
91
107
|
|
|
92
|
-
Libraries in this ecosystem make the best effort to track
|
|
93
|
-
|
|
94
|
-
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
108
|
+
Libraries in this ecosystem make the best effort to track [Node.js' release schedule](https://github.com/nodejs/release#release-schedule).
|
|
109
|
+
|
|
110
|
+
Here's [a post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
|
|
95
111
|
|
|
96
112
|
## Contributing
|
|
97
113
|
|
|
98
|
-
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)
|
|
114
|
+
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) guidelines.
|
|
99
115
|
|
|
100
116
|
> **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.
|
|
101
117
|
|
|
102
118
|
## Credits
|
|
103
119
|
|
|
104
120
|
- [Daniel Bannert](https://github.com/prisis)
|
|
121
|
+
|
|
105
122
|
- [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
|
|
106
123
|
|
|
107
|
-
##
|
|
124
|
+
## Made with ❤️ at Anolilab
|
|
125
|
+
|
|
126
|
+
This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
|
|
108
127
|
|
|
109
|
-
|
|
128
|
+
## License
|
|
110
129
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
[
|
|
116
|
-
[
|
|
130
|
+
The anolilab prettier-config is open-sourced software licensed under the [MIT][license-url]
|
|
131
|
+
|
|
132
|
+
<!-- badges -->
|
|
133
|
+
|
|
134
|
+
[license-badge]: https://img.shields.io/npm/l/@anolilab/prettier-config?style=for-the-badge
|
|
135
|
+
[license]: https://github.com/anolilab/javascript-style-guide/blob/main/LICENSE
|
|
136
|
+
[npm-downloads-badge]: https://img.shields.io/npm/dm/@anolilab/prettier-config?style=for-the-badge
|
|
137
|
+
[npm-downloads]: https://www.npmjs.com/package/@anolilab/prettier-config
|
|
138
|
+
[prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
|
|
139
|
+
[prs-welcome]: https://github.com/anolilab/javascript-style-guide/blob/main/.github/CONTRIBUTING.md
|
|
140
|
+
[chat-badge]: https://img.shields.io/discord/902465130518949899.svg?style=for-the-badge
|
|
141
|
+
[chat]: https://discord.gg/4VuvwWGaaB
|
|
142
|
+
[typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
143
|
+
[typescript-url]: https://www.typescriptlang.org/
|
|
144
|
+
[license-url]: https://opensource.org/licenses/MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/prettier-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "Prettier shareable config for Anolilab.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"homepage": "https://anolilab.com/nodejs/packages/prettier-config",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
16
|
+
"url": "git+https://github.com/anolilab/javascript-style-guide.git",
|
|
17
17
|
"directory": "packages/prettier-config"
|
|
18
18
|
},
|
|
19
19
|
"funding": [
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"LICENSE.md"
|
|
67
67
|
],
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"prettier": "^3.
|
|
69
|
+
"prettier": "^3.7.4"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=20.18.* <=25.*"
|