@sablier/devkit 1.1.1 → 1.1.3
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 +3 -3
- package/package.json +1 -1
package/just/base.just
CHANGED
|
@@ -44,7 +44,7 @@ tsc-build:
|
|
|
44
44
|
na tsc -p tsconfig.build.json
|
|
45
45
|
|
|
46
46
|
# ---------------------------------------------------------------------------- #
|
|
47
|
-
#
|
|
47
|
+
# CHECKS #
|
|
48
48
|
# ---------------------------------------------------------------------------- #
|
|
49
49
|
|
|
50
50
|
# Check code with Biome
|
|
@@ -98,14 +98,14 @@ alias kw := knip-write
|
|
|
98
98
|
[group("checks")]
|
|
99
99
|
[no-cd]
|
|
100
100
|
prettier-check +globs=GLOBS_PRETTIER:
|
|
101
|
-
na prettier --check --cache
|
|
101
|
+
na prettier --check --cache --no-error-on-unmatched-pattern {{ globs }}
|
|
102
102
|
alias pc := prettier-check
|
|
103
103
|
|
|
104
104
|
# Format using Prettier
|
|
105
105
|
[group("checks")]
|
|
106
106
|
[no-cd]
|
|
107
107
|
prettier-write +globs=GLOBS_PRETTIER:
|
|
108
|
-
na prettier --write --cache
|
|
108
|
+
na prettier --write --cache --no-error-on-unmatched-pattern {{ globs }}
|
|
109
109
|
alias pw := prettier-write
|
|
110
110
|
|
|
111
111
|
# Type check with TypeScript
|