prettier 3.5.3 → 3.6.1
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/README.md +7 -11
- package/THIRD-PARTY-NOTICES.md +1686 -258
- package/bin/prettier.cjs +16 -4
- package/doc.js +10 -1
- package/doc.mjs +10 -1
- package/index.cjs +11 -8
- package/index.d.ts +12 -6
- package/index.mjs +1952 -5077
- package/internal/experimental-cli-worker.mjs +2634 -0
- package/internal/experimental-cli.mjs +13609 -0
- package/internal/{cli.mjs → legacy-cli.mjs} +1328 -1494
- package/package.json +4 -2
- package/plugins/acorn.js +12 -12
- package/plugins/acorn.mjs +12 -12
- package/plugins/angular.js +2 -2
- package/plugins/angular.mjs +2 -2
- package/plugins/babel.d.ts +7 -7
- package/plugins/babel.js +10 -10
- package/plugins/babel.mjs +10 -10
- package/plugins/estree.js +28 -28
- package/plugins/estree.mjs +28 -28
- package/plugins/flow.js +15 -15
- package/plugins/flow.mjs +15 -15
- package/plugins/glimmer.js +18 -19
- package/plugins/glimmer.mjs +18 -19
- package/plugins/graphql.js +13 -13
- package/plugins/graphql.mjs +13 -13
- package/plugins/html.d.ts +1 -0
- package/plugins/html.js +16 -16
- package/plugins/html.mjs +16 -16
- package/plugins/markdown.js +48 -48
- package/plugins/markdown.mjs +48 -48
- package/plugins/meriyah.js +4 -4
- package/plugins/meriyah.mjs +4 -4
- package/plugins/postcss.js +30 -30
- package/plugins/postcss.mjs +30 -30
- package/plugins/typescript.js +14 -14
- package/plugins/typescript.mjs +14 -14
- package/plugins/yaml.js +70 -71
- package/plugins/yaml.mjs +76 -77
- package/standalone.js +28 -33
- package/standalone.mjs +28 -33
package/README.md
CHANGED
|
@@ -37,25 +37,21 @@
|
|
|
37
37
|
</p>
|
|
38
38
|
|
|
39
39
|
<p align="center">
|
|
40
|
-
<a href="https://github.com/prettier/prettier/actions?query=
|
|
41
|
-
<img alt="
|
|
42
|
-
<a href="https://github.com/prettier/prettier/actions?query=workflow%3ADev+branch%3Amain">
|
|
43
|
-
<img alt="Github Actions Build Status" src="https://img.shields.io/github/actions/workflow/status/prettier/prettier/dev-test.yml?label=Dev&style=flat-square"></a>
|
|
44
|
-
<a href="https://github.com/prettier/prettier/actions?query=workflow%3ALint+branch%3Amain">
|
|
45
|
-
<img alt="Github Actions Build Status" src="https://img.shields.io/github/actions/workflow/status/prettier/prettier/lint.yml?label=Lint&style=flat-square"></a>
|
|
40
|
+
<a href="https://github.com/prettier/prettier/actions?query=branch%3Amain">
|
|
41
|
+
<img alt="CI Status" src="https://img.shields.io/github/check-runs/prettier/prettier/main?style=flat-square&label=CI"></a>
|
|
46
42
|
<a href="https://codecov.io/gh/prettier/prettier">
|
|
47
|
-
<img alt="
|
|
48
|
-
<a href="https://
|
|
43
|
+
<img alt="Coverage Status" src="https://img.shields.io/codecov/c/github/prettier/prettier.svg?style=flat-square"></a>
|
|
44
|
+
<a href="https://x.com/acdlite/status/974390255393505280">
|
|
49
45
|
<img alt="Blazing Fast" src="https://img.shields.io/badge/speed-blazing%20%F0%9F%94%A5-brightgreen.svg?style=flat-square"></a>
|
|
50
46
|
<br/>
|
|
51
47
|
<a href="https://www.npmjs.com/package/prettier">
|
|
52
48
|
<img alt="npm version" src="https://img.shields.io/npm/v/prettier.svg?style=flat-square"></a>
|
|
53
49
|
<a href="https://www.npmjs.com/package/prettier">
|
|
54
50
|
<img alt="weekly downloads from npm" src="https://img.shields.io/npm/dw/prettier.svg?style=flat-square"></a>
|
|
55
|
-
<a href="#badge">
|
|
51
|
+
<a href="https://github.com/prettier/prettier#badge">
|
|
56
52
|
<img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square"></a>
|
|
57
|
-
<a href="https://
|
|
58
|
-
<img alt="Follow Prettier on
|
|
53
|
+
<a href="https://x.com/intent/follow?screen_name=PrettierCode">
|
|
54
|
+
<img alt="Follow Prettier on X" src="https://img.shields.io/badge/%40PrettierCode-9f9f9f?style=flat-square&logo=x&labelColor=555"></a>
|
|
59
55
|
</p>
|
|
60
56
|
|
|
61
57
|
## Intro
|