@sablier/devkit 1.2.4 → 1.3.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/just/base.just +10 -3
- package/package.json +1 -1
package/just/base.just
CHANGED
|
@@ -48,13 +48,20 @@ alias tb := tsc-build
|
|
|
48
48
|
# CHECKS #
|
|
49
49
|
# ---------------------------------------------------------------------------- #
|
|
50
50
|
|
|
51
|
-
# Check code with Biome
|
|
51
|
+
# Check code with Biome - runs both the checker and the linter
|
|
52
52
|
[group("checks")]
|
|
53
53
|
[no-cd]
|
|
54
54
|
@biome-check +globs=".":
|
|
55
55
|
na biome check {{ globs }}
|
|
56
56
|
alias bc := biome-check
|
|
57
57
|
|
|
58
|
+
# Lint code with Biome
|
|
59
|
+
[group("checks")]
|
|
60
|
+
[no-cd]
|
|
61
|
+
@biome-lint +globs=".":
|
|
62
|
+
na biome lint {{ globs }}
|
|
63
|
+
alias bl := biome-lint
|
|
64
|
+
|
|
58
65
|
# Fix code with Biome
|
|
59
66
|
# The `noUnusedImports` rule is disabled by default to allow unused imports during development
|
|
60
67
|
[group("checks")]
|
|
@@ -72,7 +79,7 @@ alias bw := biome-write
|
|
|
72
79
|
just _run-with-status prettier-check
|
|
73
80
|
just _run-with-status tsc-check
|
|
74
81
|
echo ""
|
|
75
|
-
echo '{{ GREEN }}
|
|
82
|
+
echo '{{ GREEN }}All code checks passed!{{ NORMAL }}'
|
|
76
83
|
alias fc := full-check
|
|
77
84
|
|
|
78
85
|
# Run all code fixes
|
|
@@ -82,7 +89,7 @@ alias fc := full-check
|
|
|
82
89
|
just _run-with-status biome-write
|
|
83
90
|
just _run-with-status prettier-write
|
|
84
91
|
echo ""
|
|
85
|
-
echo '{{ GREEN }}
|
|
92
|
+
echo '{{ GREEN }}All code fixes applied!{{ NORMAL }}'
|
|
86
93
|
alias fw := full-write
|
|
87
94
|
|
|
88
95
|
# Run knip checks
|
package/package.json
CHANGED