@kyh/prettier-config 0.1.1 → 0.1.3

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.
@@ -0,0 +1,6 @@
1
+
2
+ > @kyh/prettier-config@0.1.2 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!
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @kyh/prettier-config
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - remove hardcoded prettier import name
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - update prettier path
14
+
3
15
  ## 0.1.1
4
16
 
5
17
  ### Patch Changes
package/index.js CHANGED
@@ -11,7 +11,7 @@ const config = {
11
11
  "prettier-plugin-tailwindcss",
12
12
  ],
13
13
  tailwindConfig: fileURLToPath(
14
- new URL("../../packages/tailwind/src/index.ts", import.meta.url),
14
+ new URL("../../../packages/tailwind/src/index.ts", import.meta.url),
15
15
  ),
16
16
  tailwindFunctions: ["cn", "cva"],
17
17
  importOrder: [
@@ -21,9 +21,6 @@ const config = {
21
21
  "^(expo(.*)$)|^(expo$)",
22
22
  "<THIRD_PARTY_MODULES>",
23
23
  "",
24
- "<TYPES>^@acme",
25
- "^@acme/(.*)$",
26
- "",
27
24
  "<TYPES>^[.|..|@]",
28
25
  "^@/",
29
26
  "^[../]",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyh/prettier-config",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"