prettier 1.13.6 → 1.14.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/README.md +3 -2
- package/bin-prettier.js +4767 -1138
- package/index.js +7895 -4188
- package/package.json +4 -1
- package/parser-babylon.js +1 -1
- package/parser-flow.js +1 -1
- package/parser-glimmer.js +1 -1
- package/parser-graphql.js +1 -1
- package/parser-markdown.js +1 -1
- package/parser-postcss.js +26082 -23115
- package/parser-typescript.js +1 -1
- package/parser-vue.js +1 -1
- package/parser-yaml.js +1 -0
- package/standalone.js +2605 -804
- package/third-party.js +535 -1161
package/README.md
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
· GraphQL
|
|
16
16
|
· JSON
|
|
17
17
|
· Markdown
|
|
18
|
+
· YAML
|
|
18
19
|
· <a href="https://prettier.io/docs/en/plugins.html">
|
|
19
20
|
Your favorite language?
|
|
20
21
|
</a>
|
|
@@ -28,8 +29,8 @@
|
|
|
28
29
|
<a href="https://circleci.com/gh/prettier/prettier">
|
|
29
30
|
<img alt="CircleCI Build Status" src="https://img.shields.io/circleci/project/github/prettier/prettier/master.svg?style=flat-square&label=CircleCI">
|
|
30
31
|
</a>
|
|
31
|
-
<a href="https://ci.appveyor.com/project/
|
|
32
|
-
<img alt="AppVeyor Build Status" src="https://img.shields.io/appveyor/ci/
|
|
32
|
+
<a href="https://ci.appveyor.com/project/prettier/prettier">
|
|
33
|
+
<img alt="AppVeyor Build Status" src="https://img.shields.io/appveyor/ci/prettier/prettier.svg?style=flat-square&label=AppVeyor">
|
|
33
34
|
</a>
|
|
34
35
|
<a href="https://codecov.io/gh/prettier/prettier">
|
|
35
36
|
<img alt="Codecov Coverage Status" src="https://img.shields.io/codecov/c/github/prettier/prettier.svg?style=flat-square">
|