@homestuck/prettier-config 1.3.0 → 1.5.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/index.js +3 -0
  3. package/package.json +10 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.0](https://github.com/homestuck/configs/compare/prettier-config@v1.3.1...prettier-config@v1.5.0) (2026-01-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * Move dependencies out of workspace and into packages ([#45](https://github.com/homestuck/configs/issues/45)) ([c89558b](https://github.com/homestuck/configs/commit/c89558b3446898ccd5661cf514586edfbbb41993))
9
+
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * release 1.5.0 ([6f23a21](https://github.com/homestuck/configs/commit/6f23a21179bf1a4c2267478248b64158670efab6))
14
+
15
+ ## [1.3.1](https://github.com/homestuck/configs/compare/prettier-config@v1.3.0...prettier-config@v1.3.1) (2026-01-19)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **prettier:** Added missing rules to importOrder ([#42](https://github.com/homestuck/configs/issues/42)) ([c0c6ba9](https://github.com/homestuck/configs/commit/c0c6ba9bafd83354ddf67654e3abb2947545f505))
21
+
3
22
  ## [1.3.0](https://github.com/homestuck/configs/compare/prettier-config@v1.2.3...prettier-config@v1.3.0) (2026-01-15)
4
23
 
5
24
 
package/index.js CHANGED
@@ -13,6 +13,9 @@ const config = {
13
13
  '<TYPES>^@homestuck',
14
14
  '^@homestuck/(.*)$',
15
15
  '',
16
+ '<TYPES>^@local',
17
+ '^@local/(.*)$',
18
+ '',
16
19
  '<TYPES>^#',
17
20
  '^(#/(.*)$)|^(#(.*)$)',
18
21
  '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homestuck/prettier-config",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "private": false,
5
5
  "description": "Baseline Prettier config used and maintained by Homestuck Inc., et al.",
6
6
  "repository": {
@@ -16,20 +16,18 @@
16
16
  },
17
17
  "main": "index.js",
18
18
  "prettier": "@homestuck/prettier-config",
19
- "dependencies": {
20
- "@ianvs/prettier-plugin-sort-imports": "4.7.0",
21
- "@prettier/plugin-xml": "3.4.2",
22
- "prettier-plugin-packagejson": "2.5.21",
23
- "prettier-plugin-sort-json": "4.2.0",
24
- "prettier-plugin-tailwindcss": "0.7.2"
25
- },
26
19
  "devDependencies": {
27
- "@types/node": "^24.10.8",
28
- "typescript": "5.9.3",
29
- "@homestuck/tsconfig": "1.3.0"
20
+ "@types/node": "^25.0.9",
21
+ "typescript": "^5.9.3",
22
+ "@homestuck/tsconfig": "1.5.0"
30
23
  },
31
24
  "peerDependencies": {
32
- "prettier": "3.7.4"
25
+ "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
26
+ "@prettier/plugin-xml": "^3.4.2",
27
+ "prettier": "^3.8.0",
28
+ "prettier-plugin-packagejson": "^3.0.0",
29
+ "prettier-plugin-sort-json": "^4.2.0",
30
+ "prettier-plugin-tailwindcss": "^0.7.2"
33
31
  },
34
32
  "scripts": {
35
33
  "clean": "rm -rf .turbo node_modules",