@anolilab/prettier-config 6.0.0 → 6.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## @anolilab/prettier-config [6.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@6.0.1...@anolilab/prettier-config@6.0.2) (2025-07-02)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update prettier-config exports and dependencies ([1c7d93f](https://github.com/anolilab/javascript-style-guide/commit/1c7d93ff9bf817d7b51113c9de50dc5e2d4bc577))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * updated dev deps ([e564609](https://github.com/anolilab/javascript-style-guide/commit/e564609d20d40f7db705f32fcb4060359aec9a08))
10
+
11
+ ## @anolilab/prettier-config [6.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@6.0.0...@anolilab/prettier-config@6.0.1) (2025-05-31)
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update dependency prettier to v3.0.3 ([#891](https://github.com/anolilab/javascript-style-guide/issues/891)) ([21d2229](https://github.com/anolilab/javascript-style-guide/commit/21d222981c3eef686be957bf74c2852871929a3d))
16
+ * **deps:** update minor updates (minor) ([#896](https://github.com/anolilab/javascript-style-guide/issues/896)) ([d5132c8](https://github.com/anolilab/javascript-style-guide/commit/d5132c8e59df185331772917e8216c78a97e47be))
17
+
18
+ ### Miscellaneous Chores
19
+
20
+ * add new linting scripts and update dependencies ([655a866](https://github.com/anolilab/javascript-style-guide/commit/655a86641903f157e4d8a4dc69d0f44448fa7cc9))
21
+
1
22
  ## @anolilab/prettier-config [6.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/prettier-config@5.0.14...@anolilab/prettier-config@6.0.0) (2025-05-26)
2
23
 
3
24
  ### ⚠ BREAKING CHANGES
package/dist/index.d.cts CHANGED
@@ -2,4 +2,4 @@ import { Config } from 'prettier';
2
2
 
3
3
  declare const config: Config;
4
4
 
5
- export { config as default };
5
+ export = config;
package/dist/index.d.ts CHANGED
@@ -2,4 +2,4 @@ import { Config } from 'prettier';
2
2
 
3
3
  declare const config: Config;
4
4
 
5
- export { config as default };
5
+ export = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/prettier-config",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "description": "Prettier shareable config for Anolilab.",
5
5
  "keywords": [
6
6
  "css",
@@ -35,13 +35,13 @@
35
35
  "type": "module",
36
36
  "exports": {
37
37
  ".": {
38
- "require": {
39
- "types": "./dist/index.d.cts",
40
- "default": "./dist/index.cjs"
41
- },
42
38
  "import": {
43
39
  "types": "./dist/index.d.mts",
44
40
  "default": "./dist/index.mjs"
41
+ },
42
+ "require": {
43
+ "types": "./dist/index.d.cts",
44
+ "default": "./dist/index.cjs"
45
45
  }
46
46
  },
47
47
  "./package.json": "./package.json"
@@ -66,7 +66,7 @@
66
66
  "LICENSE.md"
67
67
  ],
68
68
  "peerDependencies": {
69
- "prettier": "3.x"
69
+ "prettier": "3.0.3"
70
70
  },
71
71
  "engines": {
72
72
  "node": ">=20.18.* <=24.*"