@vitnode/config 1.2.0-canary.52 → 1.2.0-canary.54
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/README.md +1 -1
- package/biome.json +4 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package provides a default Biome configuration, TypeScript configuration fo
|
|
|
21
21
|
|
|
22
22
|
```json
|
|
23
23
|
{
|
|
24
|
-
"$schema": "https://biomejs.dev/schemas/2.2.
|
|
24
|
+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
|
|
25
25
|
"extends": ["@vitnode/config/biome"],
|
|
26
26
|
"root": true
|
|
27
27
|
}
|
package/biome.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.2.3/schema.json",
|
|
3
3
|
"root": false,
|
|
4
4
|
"vcs": {
|
|
5
5
|
"enabled": true,
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
"!build",
|
|
17
17
|
"!.turbo",
|
|
18
18
|
"!.source",
|
|
19
|
-
"!docker"
|
|
19
|
+
"!docker",
|
|
20
|
+
"!**/(main)/(plugins)",
|
|
21
|
+
"!**/(auth)/(plugins)"
|
|
20
22
|
]
|
|
21
23
|
},
|
|
22
24
|
"formatter": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitnode/config",
|
|
3
|
-
"version": "1.2.0-canary.
|
|
3
|
+
"version": "1.2.0-canary.54",
|
|
4
4
|
"description": "Biome, TypeScript (TSConfig) config for VitNode",
|
|
5
5
|
"author": "VitNode Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,10 +28,11 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
+
"@biomejs/biome": "2.2.3",
|
|
31
32
|
"typescript": "5.9.x"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"@biomejs/biome": "^2.2.
|
|
35
|
+
"@biomejs/biome": "^2.2.3",
|
|
35
36
|
"typescript": "^5.9.2"
|
|
36
37
|
}
|
|
37
38
|
}
|