@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.
Files changed (2) hide show
  1. package/just/base.just +3 -3
  2. 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
- # CHECKs #
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 "{{ globs }}"
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 "{{ globs }}"
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sablier/devkit",
3
3
  "description": "Configuration files and reusable scripts for Sablier repositories",
4
- "version": "1.1.1",
4
+ "version": "1.1.3",
5
5
  "author": {
6
6
  "name": "Sablier Labs Ltd",
7
7
  "url": "https://sablier.com"