@dvashim/biome-config 1.0.8 → 1.0.9

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 CHANGED
@@ -12,11 +12,11 @@ npm install @dvashim/biome-config
12
12
 
13
13
  ```json
14
14
  {
15
- "extends": ["@dvashim/biome-config/all/recommended"]
15
+ "extends": ["@dvashim/biome-config"]
16
16
  }
17
17
  ```
18
18
 
19
- ### React config
19
+ ### React configs
20
20
 
21
21
  ```json
22
22
  {
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "@dvashim/biome-config",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Shared Biome Configurations",
5
5
  "type": "module",
6
6
  "exports": {
7
- "./all/recommended": "./biome.all.recommended.json",
8
- "./react/strict": "./biome.react.strict.json",
9
- "./react/recommended": "./biome.react.recommended.json"
7
+ ".": "./dist/biome.recommended.json",
8
+ "./recommended": "./dist/biome.recommended.json",
9
+ "./react/*": "./dist/react/biome.react-*.json"
10
10
  },
11
- "main": "./biome.all.recommended.json",
12
11
  "files": [
13
- "*.json"
12
+ "dist/**/*.json"
14
13
  ],
15
14
  "keywords": [
16
15
  "biome",
@@ -22,14 +21,12 @@
22
21
  "name": "Aleksei Reznichenko",
23
22
  "email": "aleksei@dvashim.dev"
24
23
  },
25
- "license": "ISC",
24
+ "license": "MIT",
26
25
  "devDependencies": {
27
- "@biomejs/biome": "^2.3.11",
26
+ "@biomejs/biome": "^2.3.12",
28
27
  "@changesets/changelog-github": "^0.5.2",
29
- "@changesets/cli": "^2.29.8"
30
- },
31
- "peerDependencies": {
32
- "@biomejs/biome": "^2.3.11"
28
+ "@changesets/cli": "^2.29.8",
29
+ "validate-package-exports": "^0.15.0"
33
30
  },
34
31
  "repository": {
35
32
  "type": "git",
@@ -39,7 +36,9 @@
39
36
  "access": "public"
40
37
  },
41
38
  "scripts": {
42
- "check": "biome check .",
39
+ "test:format": "biome format .",
40
+ "test:exports": "validate-package-exports --check --verify",
41
+ "test": "pnpm run \"/^test:.*/\"",
43
42
  "changeset": "changeset",
44
43
  "changeset:version": "changeset version",
45
44
  "changeset:publish": "changeset publish"
package/biome.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "root": true,
3
- "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
4
- "extends": ["./biome.all.recommended.json"],
5
- "files": {
6
- "includes": ["*.json"]
7
- },
8
- "vcs": {
9
- "useIgnoreFile": true
10
- }
11
- }