@ankhorage/devtools 1.2.0 → 1.2.1

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.
@@ -27,9 +27,6 @@ jobs:
27
27
  - name: Install dependencies
28
28
  run: bun install --frozen-lockfile
29
29
 
30
- - name: Validate Ankhorage repository
31
- run: bunx @ankhorage/ankh doctor validate .
32
-
33
30
  - name: Run build
34
31
  run: |
35
32
  if node -e "const p=require('./package.json'); process.exit(p.scripts?.build ? 0 : 1)"; then
@@ -38,6 +35,9 @@ jobs:
38
35
  echo "No build script found; skipping."
39
36
  fi
40
37
 
38
+ - name: Validate Ankhorage repository
39
+ run: bunx @ankhorage/ankh doctor validate .
40
+
41
41
  - name: Run lint
42
42
  run: |
43
43
  if node -e "const p=require('./package.json'); process.exit(p.scripts?.lint ? 0 : 1)"; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ankhorage/devtools",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Shared development tools and repository standards for Ankhorage",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/ankhorage/devtools#readme",