@anolilab/prettier-config 6.0.1 → 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,13 @@
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
+
1
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)
2
12
 
3
13
  ### Bug Fixes
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.1",
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"