@ankhorage/devtools 1.11.6 → 1.11.7

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.
@@ -65,6 +65,12 @@ jobs:
65
65
  run: |
66
66
  git fetch origin main
67
67
  git checkout -B main origin/main
68
+
69
+ if [ -z "$(find .changeset -maxdepth 1 -type f -name '*.md' ! -name README.md -print -quit)" ]; then
70
+ echo "versioned=false" >> "$GITHUB_OUTPUT"
71
+ exit 0
72
+ fi
73
+
68
74
  before_version="$(node -p "require('./package.json').version")"
69
75
  __ANKH_CHANGESETS_VERSION_COMMAND__
70
76
  after_version="$(node -p "require('./package.json').version")"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ankhorage/devtools",
3
- "version": "1.11.6",
3
+ "version": "1.11.7",
4
4
  "description": "Shared development tools and repository standards for Ankhorage",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/ankhorage/devtools#readme",