@vlandoss/biome-config 0.0.7-git-9b7b388.0 → 0.0.7-git-e69c548.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/README.md +27 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Biome Config
|
|
2
2
|
|
|
3
|
+
> **Deprecated.** This package has been superseded by [`@vlandoss/config`](../../packages/config/README.md), which consolidates Biome, TypeScript, and other shared configs behind subpath exports. New projects should use `@vlandoss/config/biome` instead. This package will keep receiving critical fixes but no new features.
|
|
4
|
+
|
|
5
|
+
## Migration
|
|
6
|
+
|
|
7
|
+
Replace:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"extends": ["@vlandoss/biome-config"]
|
|
12
|
+
}
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
With:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"extends": ["@vlandoss/config/biome"]
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
And swap the devDependency:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pnpm remove @vlandoss/biome-config
|
|
27
|
+
pnpm add -D @vlandoss/config
|
|
28
|
+
```
|
|
29
|
+
|
|
3
30
|
## Installation
|
|
4
31
|
|
|
5
32
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlandoss/biome-config",
|
|
3
|
-
"version": "0.0.7-git-
|
|
3
|
+
"version": "0.0.7-git-e69c548.0",
|
|
4
4
|
"description": "Biome configuration file for @variableland",
|
|
5
5
|
"homepage": "https://github.com/variableland/dx/tree/main/dotfiles/biome-config#readme",
|
|
6
6
|
"bugs": {
|