@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nswds/tokens",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "NSW Design System Application Kit Design Tokens",
5
5
  "homepage": "https://github.com/digitalnsw/nswds-tokens#readme",
6
6
  "repository": {
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 "Auto-generated title using OpenAI" --head "$branch"
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