@sablier/devkit 1.2.1 → 1.2.2

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 +4 -3
  2. package/package.json +7 -6
package/just/base.just CHANGED
@@ -123,7 +123,8 @@ alias tc := tsc-check
123
123
  # Private recipe to run a check with formatted output
124
124
  [no-cd]
125
125
  @_run-with-status recipe:
126
- @echo ""
127
- @echo '{{ CYAN }}→ Running {{ recipe }}...{{ NORMAL }}'
126
+ echo ""
127
+ echo '{{ CYAN }}→ Running {{ recipe }}...{{ NORMAL }}'
128
128
  just {{ recipe }}
129
- @echo '{{ GREEN }}✓ {{ recipe }} completed{{ NORMAL }}'
129
+ echo '{{ GREEN }}✓ {{ recipe }} completed{{ NORMAL }}'
130
+ alias rws := _run-with-status
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@sablier/devkit",
3
3
  "description": "Configuration files and reusable scripts for Sablier repositories",
4
- "version": "1.2.1",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "version": "1.2.2",
5
7
  "author": {
6
8
  "name": "Sablier Labs Ltd",
7
9
  "url": "https://sablier.com"
@@ -9,6 +11,10 @@
9
11
  "bugs": {
10
12
  "url": "https://github.com/sablier-labs/devkit/issues"
11
13
  },
14
+ "devDependencies": {
15
+ "@biomejs/biome": "^2.3.1",
16
+ "prettier": "^3.6.2"
17
+ },
12
18
  "exports": {
13
19
  "./biome": "./biome.jsonc",
14
20
  "./prettier": "./.prettierrc.json",
@@ -34,16 +40,11 @@
34
40
  "tsconfig",
35
41
  "typescript"
36
42
  ],
37
- "license": "MIT",
38
43
  "publishConfig": {
39
44
  "access": "public"
40
45
  },
41
46
  "repository": {
42
47
  "type": "git",
43
48
  "url": "git+https://github.com/sablier-labs/devkit.git"
44
- },
45
- "type": "module",
46
- "devDependencies": {
47
- "prettier": "^3.6.2"
48
49
  }
49
50
  }