@adamhl8/configs 0.8.3 → 0.8.4
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/dist/biome.jsonc +7 -0
- package/package.json +2 -4
package/dist/biome.jsonc
CHANGED
|
@@ -142,6 +142,13 @@
|
|
|
142
142
|
"semicolons": "asNeeded"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
+
"json": {
|
|
146
|
+
"formatter": {
|
|
147
|
+
// this is 'auto' by default, except that biome uses 'always' for package.json
|
|
148
|
+
// setting it to 'auto' explicitly makes it consistent across all files, including package.json
|
|
149
|
+
"expand": "auto"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
145
152
|
"assist": {
|
|
146
153
|
"enabled": true,
|
|
147
154
|
"actions": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adamhl8/configs",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,9 +24,7 @@
|
|
|
24
24
|
"types": "./dist/types/prettier.d.ts"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist/"
|
|
29
|
-
],
|
|
27
|
+
"files": ["dist/"],
|
|
30
28
|
"scripts": {
|
|
31
29
|
"bundle": "rm -rf ./dist && bun lint && tsc && tsc-alias && cp ./configs/*.{json,jsonc} ./dist/",
|
|
32
30
|
"lint": "tsc --noEmit && biome check --write",
|