@sablier/devkit 1.3.3 → 1.3.5
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/biome.jsonc +17 -0
- package/just/base.just +2 -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/just/base.just
CHANGED
|
@@ -129,9 +129,9 @@ alias tc := tsc-check
|
|
|
129
129
|
|
|
130
130
|
# Private recipe to run a check with formatted output
|
|
131
131
|
[no-cd]
|
|
132
|
-
@_run-with-status recipe:
|
|
132
|
+
@_run-with-status recipe *args:
|
|
133
133
|
echo ""
|
|
134
134
|
echo '{{ CYAN }}→ Running {{ recipe }}...{{ NORMAL }}'
|
|
135
|
-
just {{ recipe }}
|
|
135
|
+
just {{ recipe }} {{ args }}
|
|
136
136
|
echo '{{ GREEN }}✓ {{ recipe }} completed{{ NORMAL }}'
|
|
137
137
|
alias rws := _run-with-status
|
package/package.json
CHANGED