@sablier/devkit 1.3.3 → 1.3.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.
Files changed (2) hide show
  1. package/biome.jsonc +17 -0
  2. package/package.json +1 -1
package/biome.jsonc CHANGED
@@ -1,4 +1,20 @@
1
1
  // Sablier Devkit configuration for Biome v2: https://next.biomejs.dev
2
+ //
3
+ // This is a shared base configuration meant to be extended in consuming projects.
4
+ //
5
+ // IMPORTANT: Consumers must add their own `files.includes` patterns to specify
6
+ // which files to lint and format. For example:
7
+ //
8
+ // {
9
+ // "extends": ["@sablier/devkit/biome"],
10
+ // "files": {
11
+ // "includes": ["**/*.{css,js,jsx,json,ts,tsx}", "!node_modules"]
12
+ // }
13
+ // }
14
+ //
15
+ // You may also add override blocks with custom `includes` patterns for
16
+ // granular rule customization. See ~/sablier/frontend/ui/biome.jsonc for a
17
+ // complete example.
2
18
  {
3
19
  "$schema": "https://biomejs.dev/schemas/latest/schema.json",
4
20
  "assist": {
@@ -12,6 +28,7 @@
12
28
  },
13
29
  "css": {
14
30
  "parser": {
31
+ "cssModules": true,
15
32
  "tailwindDirectives": true
16
33
  }
17
34
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Configuration files and reusable scripts for Sablier repositories",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "version": "1.3.3",
6
+ "version": "1.3.4",
7
7
  "author": {
8
8
  "name": "Sablier Labs Ltd",
9
9
  "url": "https://sablier.com"