diff options
author | 2021-06-17 16:10:15 -0500 | |
---|---|---|
committer | 2021-06-17 16:10:15 -0500 | |
commit | ff7ec2fc021a549bcf7e31624b6c2a8f01042a07 (patch) | |
tree | f2d644e546a559a74d4899bdf2253b979ec60acf | |
parent | a936d92cee680b6a63ae8910169b44d87604021b (diff) | |
download | astro-ff7ec2fc021a549bcf7e31624b6c2a8f01042a07.tar.gz astro-ff7ec2fc021a549bcf7e31624b6c2a8f01042a07.tar.zst astro-ff7ec2fc021a549bcf7e31624b6c2a8f01042a07.zip |
Add @types/prettier to astro-prettier-plugin (#487)
-rw-r--r-- | .changeset/late-badgers-accept.md | 5 | ||||
-rw-r--r-- | tools/prettier-plugin-astro/package.json | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.changeset/late-badgers-accept.md b/.changeset/late-badgers-accept.md new file mode 100644 index 000000000..7632a9117 --- /dev/null +++ b/.changeset/late-badgers-accept.md @@ -0,0 +1,5 @@ +--- +'prettier-plugin-astro': patch +--- + +Add @types/prettier for type support diff --git a/tools/prettier-plugin-astro/package.json b/tools/prettier-plugin-astro/package.json index aa66d6636..9ccc2712f 100644 --- a/tools/prettier-plugin-astro/package.json +++ b/tools/prettier-plugin-astro/package.json @@ -9,7 +9,10 @@ "build": "echo 'build'" }, "dependencies": { - "prettier": "^2.2.1", - "@astrojs/parser": "^0.13.3" + "@astrojs/parser": "^0.13.3", + "prettier": "^2.2.1" + }, + "devDependencies": { + "@types/prettier": "^2.2.1" } } |