prettier-plugin-astro 0.0.10 → 0.1.0-next.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 +24 -0
- package/README.md +2 -2
- package/dist/index.js +204 -482
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# prettier-plugin-astro
|
|
2
2
|
|
|
3
|
+
## 0.1.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 054d055: Migrate to new compiler
|
|
8
|
+
|
|
9
|
+
## 0.0.12
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ab70152: Fix a bug in "allow shorthand" option (#87)
|
|
14
|
+
- 08c5fc6: Bump ava to v4.0.1
|
|
15
|
+
- 4eebc6c: Fix comment error when nested
|
|
16
|
+
- e28d1cf: Format html using only the plugin itself
|
|
17
|
+
|
|
18
|
+
## 0.0.11
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 4a7d602: Bump ava
|
|
23
|
+
- d07451c: Bump @astrojs/parser from 0.20.2 to 0.20.3
|
|
24
|
+
- 2c164f7: Format spread operator
|
|
25
|
+
- f7cf7c1: Format markdown component content
|
|
26
|
+
|
|
3
27
|
## 0.0.10
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Beta Prettier Plugin for [Astro](https://github.com/
|
|
1
|
+
# Beta Prettier Plugin for [Astro](https://github.com/withastro/astro)
|
|
2
2
|
|
|
3
3
|
## Install [prettier-plugin-astro](https://www.npmjs.com/package/prettier-plugin-astro)
|
|
4
4
|
|
|
@@ -16,7 +16,7 @@ to your `package.json` and create a `.prettierignore` to ignore any files.
|
|
|
16
16
|
|
|
17
17
|
To get setup:
|
|
18
18
|
|
|
19
|
-
1. `git clone git@github.com:
|
|
19
|
+
1. `git clone git@github.com:withastro/prettier-plugin-astro.git`
|
|
20
20
|
1. `yarn`
|
|
21
21
|
1. `yarn build`
|
|
22
22
|
1. Run tests with [`yarn test`](https://github.com/avajs/ava/tree/main/docs)
|