@kitschpatrol/prettier-plugin-astro 0.14.1-fork.1 → 0.14.1-fork.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/package.json +5 -4
- package/readme.md +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/prettier-plugin-astro",
|
|
3
|
-
"version": "0.14.1-fork.
|
|
3
|
+
"version": "0.14.1-fork.2",
|
|
4
4
|
"description": "A fork of Prettier Plugin Astro with minor fixes.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"prettier-plugin",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
29
|
"types": "./dist/index.d.ts",
|
|
30
|
-
"import": "./dist/index.js"
|
|
30
|
+
"import": "./dist/index.js",
|
|
31
|
+
"default": "./dist/index.js"
|
|
31
32
|
}
|
|
32
33
|
},
|
|
33
34
|
"main": "./dist/index.js",
|
|
@@ -41,13 +42,13 @@
|
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@arethetypeswrong/core": "^0.18.2",
|
|
44
|
-
"@kitschpatrol/shared-config": "^7.
|
|
45
|
+
"@kitschpatrol/shared-config": "^7.4.0",
|
|
45
46
|
"@types/node": "~22.18.13",
|
|
46
47
|
"bumpp": "^11.0.1",
|
|
47
48
|
"prettier": "^3.8.2",
|
|
48
49
|
"publint": "^0.3.18",
|
|
49
50
|
"shx": "^0.4.0",
|
|
50
|
-
"tsdown": "^0.21.
|
|
51
|
+
"tsdown": "^0.21.8",
|
|
51
52
|
"typescript": "~6.0.2",
|
|
52
53
|
"vite": "^8.0.8",
|
|
53
54
|
"vitest": "^4.1.4"
|
package/readme.md
CHANGED
|
@@ -32,6 +32,8 @@ This is a reluctant fork of the official [Prettier Plugin for Astro](https://git
|
|
|
32
32
|
|
|
33
33
|
- Aggressive dependency updates, which might be breaking changes for users of older Astro versions < v6.
|
|
34
34
|
|
|
35
|
+
- Package is built with [tsdown](https://tsdown.dev/).
|
|
36
|
+
|
|
35
37
|
- Package is ESM-only.
|
|
36
38
|
|
|
37
39
|
- Repository project template aligned with [kitschpatrol/create-project](https://github.com/kitschpatrol/create-project). (Massive diff, but simplifies management on my end.)
|