@kyh/prettier-config 0.1.8 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @kyh/prettier-config
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - update to eslint 9
8
+
9
+ ## 0.1.9
10
+
11
+ ### Patch Changes
12
+
13
+ - update packages
14
+
3
15
  ## 0.1.8
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyh/prettier-config",
3
- "version": "0.1.8",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,17 +9,17 @@
9
9
  ".": "./base.js"
10
10
  },
11
11
  "dependencies": {
12
- "@ianvs/prettier-plugin-sort-imports": "^4.2.1",
13
- "prettier": "^3.2.5",
14
- "prettier-plugin-tailwindcss": "^0.5.13"
12
+ "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
13
+ "prettier": "^3.3.3",
14
+ "prettier-plugin-tailwindcss": "^0.6.6"
15
15
  },
16
16
  "devDependencies": {
17
- "typescript": "^5.4.5",
18
- "@kyh/tsconfig": "^0.1.8"
17
+ "typescript": "^5.5.4",
18
+ "@kyh/tsconfig": "^1.0.0"
19
19
  },
20
20
  "prettier": "@kyh/prettier-config",
21
21
  "scripts": {
22
- "clean": "rm -rf .turbo node_modules",
22
+ "clean": "git clean -xdf .cache .nitro .output .turbo .vercel node_modules",
23
23
  "format": "prettier --check . --ignore-path ../../.gitignore",
24
24
  "typecheck": "tsc --noEmit"
25
25
  }
package/tsconfig.json CHANGED
@@ -1,8 +1,5 @@
1
1
  {
2
2
  "extends": "@kyh/tsconfig/base.json",
3
- "compilerOptions": {
4
- "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
5
- },
6
3
  "include": ["."],
7
4
  "exclude": ["node_modules"]
8
5
  }
@@ -1,6 +0,0 @@
1
-
2
- > @kyh/prettier-config@0.1.3 format /Users/kyh/Documents/Projects/template/tooling/prettier
3
- > prettier --check . --ignore-path ../../.gitignore "--write" "--cache" "--cache-location" "node_modules/.cache/.prettiercache"
4
-
5
- Checking formatting...
6
- All matched files use Prettier code style!