@nswds/tokens 2.2.0 → 2.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.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/pull-request.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.2.1](https://github.com/digitalnsw/nswds-tokens/compare/v2.2.0...v2.2.1) (2025-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **pull-request.sh:** remove auto-generated body text for PR creation to allow for custom descriptions ([f5178e5](https://github.com/digitalnsw/nswds-tokens/commit/f5178e5168602d13fad0287110d8664755e49bc0))
|
|
7
|
+
|
|
1
8
|
# [2.2.0](https://github.com/digitalnsw/nswds-tokens/compare/v2.1.1...v2.2.0) (2025-03-27)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/pull-request.sh
CHANGED
|
@@ -55,7 +55,7 @@ echo ""
|
|
|
55
55
|
# Optionally prompt to confirm and create PR
|
|
56
56
|
read -p "📝 Use this title to create the PR? [y/N]: " confirm
|
|
57
57
|
if [[ $confirm =~ ^[Yy]$ ]]; then
|
|
58
|
-
gh pr create --title "$title" --body "
|
|
58
|
+
gh pr create --title "$title" --body "" --head "$branch"
|
|
59
59
|
else
|
|
60
60
|
echo "🛑 PR not created. You can still copy and use the title manually."
|
|
61
61
|
fi
|