@mkaradeniz/prettier-config 4.0.4 → 4.0.6

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.
@@ -30,9 +30,7 @@ module.exports = {
30
30
  'prettier-plugin-tailwindcss',
31
31
  // Sorts keys in package.json files. => https://github.com/matzkoh/prettier-plugin-packagejson
32
32
  'prettier-plugin-packagejson',
33
- // Adds curly brackets to control flow statements (`if`, `for`, `while`, etc.). => https://github.com/JoshuaKGoldberg/prettier-plugin-curly
34
- 'prettier-plugin-curly',
35
- ],
33
+ ].map(require.resolve),
36
34
 
37
35
  // * @ianvs/prettier-plugin-sort-imports config. See: https://github.com/IanVS/prettier-plugin-sort-imports#options
38
36
  importOrder: [
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@mkaradeniz/prettier-config",
3
- "version": "4.0.4",
3
+ "version": "4.0.6",
4
4
  "private": false,
5
5
  "license": "MIT",
6
- "main": "index.js",
6
+ "main": "index.cjs",
7
7
  "files": [
8
- "index.js"
8
+ "index.cjs"
9
9
  ],
10
10
  "scripts": {
11
11
  "clean": "rimraf node_modules",
@@ -18,11 +18,10 @@
18
18
  "**/*.{json,js,mjs}": "prettier --log-level warn --write",
19
19
  "**/*.{js,mjs}": "eslint --max-warnings 0 --no-warn-ignored"
20
20
  },
21
- "prettier": "./index.js",
21
+ "prettier": "./index.cjs",
22
22
  "dependencies": {
23
23
  "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
24
24
  "prettier": "^3.7.3",
25
- "prettier-plugin-curly": "^0.4.1",
26
25
  "prettier-plugin-packagejson": "^2.5.20",
27
26
  "prettier-plugin-tailwindcss": "^0.7.2"
28
27
  },