@unbabel/samora-vue3-components 0.3.7 → 0.4.0
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 +2 -2
- package/package.json +1 -1
- package/vue3-components.es.js +3017 -2492
- package/vue3-components.umd.js +4 -4
package/README.md
CHANGED
|
@@ -143,9 +143,9 @@ This Samora module creates two builds
|
|
|
143
143
|
|
|
144
144
|
## How to release a new version
|
|
145
145
|
|
|
146
|
-
1. Ensure your main branch has the latest changes - `
|
|
146
|
+
1. Ensure your main branch has the latest changes - `git pull origin main`
|
|
147
147
|
2. Create a tag to match the new npm version in your package.json - `git tag vue3-components/vX.Y.Z`
|
|
148
|
-
3. Push the new Gitlab tag - `git push origin tag vX.Y.Z`
|
|
148
|
+
3. Push the new Gitlab tag - `git push origin tag vue3-components/vX.Y.Z`
|
|
149
149
|
4. The CI will pick up the new tag and initiate the process of deployment,
|
|
150
150
|
with needs to be finalised by manually triggering the components package
|
|
151
151
|
deployment to NPM and the documentation (storybook) updates to aws
|
package/package.json
CHANGED