ada-ui 5.1.2-test-cb47a56a5a40a62af75b85c3557b3cf7d578816f → 5.1.2-test-78f41d7705169e98447060a979808d45697a468b

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.
@@ -28,7 +28,7 @@ jobs:
28
28
  body: |
29
29
  **Snapshot release** triggered by ${{ github.event.comment.html_url }}
30
30
 
31
- Running ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
31
+ Running ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
32
32
 
33
33
  - name: Enforce write permission
34
34
  uses: prince-chrismc/check-actor-permissions-action@v3
@@ -96,7 +96,7 @@ jobs:
96
96
  body: |
97
97
  **Snapshot release** triggered by ${{ github.event.comment.html_url }}
98
98
 
99
- Success ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
99
+ Success ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
100
100
 
101
101
  <details>
102
102
  <summary>Output</summary>
@@ -122,7 +122,7 @@ jobs:
122
122
  body: |
123
123
  **Snapshot release** triggered by ${{ github.event.comment.html_url }}
124
124
 
125
- Failure ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
125
+ Failure ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
126
126
 
127
127
  #### Missing changeset(s)
128
128
 
@@ -139,7 +139,7 @@ jobs:
139
139
  body: |
140
140
  **Snapshot release** triggered by ${{ github.event.comment.html_url }}
141
141
 
142
- Failure ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
142
+ Failure ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
143
143
 
144
144
  - name: Add canceled comment
145
145
  if: cancelled()
@@ -150,4 +150,4 @@ jobs:
150
150
  body: |
151
151
  **Snapshot release** triggered by ${{ github.event.comment.html_url }}
152
152
 
153
- ⭕️ Canceled ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
153
+ Canceled ([view action log](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}))
package/CHANGELOG.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # ada-ui
2
2
 
3
- ## 5.1.2-test-cb47a56a5a40a62af75b85c3557b3cf7d578816f
3
+ ## 5.1.2-test-78f41d7705169e98447060a979808d45697a468b
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - cb47a56: test
7
+ - 78f41d7: test
8
8
 
9
9
  ## 5.1.1
10
10
 
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "ada-ui",
3
- "version": "5.1.2-test-cb47a56a5a40a62af75b85c3557b3cf7d578816f",
3
+ "version": "5.1.2-test-78f41d7705169e98447060a979808d45697a468b",
4
4
  "scripts": {
5
5
  "dev": "concurrently -n scss,serve 'sass scss:css --watch' 'alive-server .'",
6
6
  "build": "rm -rf css && sass scss:css -s compressed --no-source-map",
7
7
  "changeset": "changeset",
8
- "snapshot": "f(){ if [ -z \"$1\" ]; then echo \"Error: No tag name specified, exiting.\"; exit 1; fi; npm run build && changeset version --snapshot $1 && changeset publish --no-git-tag --tag $1; }; f",
9
8
  "remove-snapshot": "f(){ if [ -z \"$1\" ]; then echo \"Error: No tag name specified, exiting.\"; exit 1; fi; npm dist-tag rm ada-ui $1; }; f",
10
9
  "version": "npm run build && changeset version"
11
10
  },