@apitree.cz/prettier-config 0.3.8 → 0.3.9

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -45,8 +45,12 @@ Following IntelliJ IDEs setup is recommended for the best developer experience:
45
45
 
46
46
  ### Recommended Values
47
47
 
48
+ #### ✅ Automatic Prettier configuration
49
+
48
50
  #### Run for files
49
51
 
50
52
  ```
51
53
  {**/*,*}.{css,ejs,graphql,html,js,json,md,mdx,ts,tsx,yml,yaml}
52
54
  ```
55
+
56
+ #### ✅ Run on save
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apitree.cz/prettier-config",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Prettier configuration for ApiTree projects.",
5
5
  "keywords": [
6
6
  "apitree",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "prettier": "^3.6.2",
32
- "typescript": "^5.8.3"
32
+ "typescript": "^5.9.3"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "prettier": "^3.4.2"
@@ -37,13 +37,13 @@
37
37
  "scripts": {
38
38
  "prebuild": "del dist tsconfig.build.tsbuildinfo",
39
39
  "build": "tsc --build tsconfig.build.json",
40
- "cleanup": "del .eslintcache .turbo tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo dist node_modules",
40
+ "cleanup": "del .eslintcache .turbo tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo tsconfig.lib.tsbuildinfo dist node_modules",
41
41
  "fix": "run-p ts format:fix lint:fix",
42
42
  "format": "prettier --check \"./**/*.{js,json,md,ts}\"",
43
43
  "format:fix": "pnpm run format --write",
44
44
  "lint": "eslint --cache .",
45
45
  "lint:fix": "pnpm run lint --fix",
46
46
  "qa": "run-p ts format lint",
47
- "ts": "tsc --build tsconfig.json"
47
+ "ts": "tsc --build tsconfig.lib.json"
48
48
  }
49
49
  }