@sablier/devkit 1.2.1 → 1.2.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/biome.jsonc CHANGED
@@ -10,6 +10,11 @@
10
10
  }
11
11
  }
12
12
  },
13
+ "css": {
14
+ "parser": {
15
+ "tailwindDirectives": true
16
+ }
17
+ },
13
18
  "files": {
14
19
  "maxSize": 5242880 // 5MB
15
20
  },
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.3",
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
  }