sprintify-ui 0.2.28 → 0.2.30
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/README.md +17 -2
- package/dist/sprintify-ui.es.js +511 -493
- package/dist/types/src/types/TimelineItem.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/BaseTimeline.stories.js +2 -0
- package/src/components/BaseTimeline.vue +4 -1
- package/src/components/BaseTimelineItem.vue +23 -2
- package/src/stories/PageShow.vue +1 -1
- package/src/types/TimelineItem.ts +2 -0
package/README.md
CHANGED
|
@@ -228,7 +228,16 @@ All components are globally available, you can use them without importation:
|
|
|
228
228
|
</script>
|
|
229
229
|
```
|
|
230
230
|
|
|
231
|
-
|
|
231
|
+
|
|
232
|
+
## Make changes
|
|
233
|
+
|
|
234
|
+
### Git add .
|
|
235
|
+
|
|
236
|
+
```
|
|
237
|
+
git add .
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
### Commit
|
|
232
241
|
|
|
233
242
|
For your commit you must run the following code:
|
|
234
243
|
|
|
@@ -236,10 +245,16 @@ For your commit you must run the following code:
|
|
|
236
245
|
npm run commit
|
|
237
246
|
```
|
|
238
247
|
|
|
239
|
-
|
|
248
|
+
### Release
|
|
240
249
|
|
|
241
250
|
To release (only from main after review)
|
|
242
251
|
|
|
243
252
|
```
|
|
244
253
|
npm run release
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### Push to git
|
|
257
|
+
|
|
258
|
+
```
|
|
259
|
+
git push --follow-tags origin main && npm publish
|
|
245
260
|
```
|