@unimelb/pattern-lib-vue 14.5.4 → 14.6.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/.out/vue.js +2 -2
- package/README.md +3 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -147,8 +147,7 @@ For your own sanity, make sure to install your code editor's ESLint and stylelin
|
|
|
147
147
|
|
|
148
148
|
**At the end of the release sprint:**
|
|
149
149
|
|
|
150
|
-
> [!NOTE]
|
|
151
|
-
> **Note on versioning**: the version number follows the [semver](http://semver.org/) convention `MAJOR.MINOR.PATCH`, where: `MAJOR` corresponds to a breaking change (e.g. a change in a component's markup), `MINOR` to a new feature (e.g. a new component, a new feature for an existing component, etc.), and `PATCH` to a bug fix or under-the-hood change (e.g. code clean-up, performance improvement, etc.)
|
|
150
|
+
> [!NOTE] > **Note on versioning**: the version number follows the [semver](http://semver.org/) convention `MAJOR.MINOR.PATCH`, where: `MAJOR` corresponds to a breaking change (e.g. a change in a component's markup), `MINOR` to a new feature (e.g. a new component, a new feature for an existing component, etc.), and `PATCH` to a bug fix or under-the-hood change (e.g. code clean-up, performance improvement, etc.)
|
|
152
151
|
|
|
153
152
|
1. Look at all the PRs that were assigned to `next-release` throughout the sprint and identify the highest-level of change (major, minor or patch). Deduce the next release's version number and rename the milestone accordingly.
|
|
154
153
|
1. Create a new release notes draft based on the following template: `.github/RELEASE_NOTES_TEMPLATE.md`.
|
|
@@ -172,8 +171,7 @@ For your own sanity, make sure to install your code editor's ESLint and stylelin
|
|
|
172
171
|
|
|
173
172
|
Pre-release builds can be created like this (using the git pre-push hook behind the scenes):
|
|
174
173
|
|
|
175
|
-
> [!NOTE]
|
|
176
|
-
> **Note on pre-release versions**: These are legitimate [semver](http://semver.org/) versions. They have the format MAJOR.MINOR.PATCH-beta.NUMBER. **Only** these pre-release versions will be published on `dev`.
|
|
174
|
+
> [!NOTE] > **Note on pre-release versions**: These are legitimate [semver](http://semver.org/) versions. They have the format MAJOR.MINOR.PATCH-beta.NUMBER. **Only** these pre-release versions will be published on `dev`.
|
|
177
175
|
|
|
178
176
|
1. Check out a clean `dev` branch
|
|
179
177
|
1. in bash `git push` - this will increment the pre-release version number and make a commit to your local repository
|
|
@@ -216,7 +214,7 @@ Recommended mobile devices for testing:
|
|
|
216
214
|
|
|
217
215
|
### Visual snapshot testing
|
|
218
216
|
|
|
219
|
-
You can run visual snapshot testing using `yarn test:snapshots`. This compares your changes against the latest visual snapshot.
|
|
217
|
+
You can run visual snapshot testing using `yarn test:snapshots`. This compares your changes against the latest visual snapshot. Failed snapshot tests will show a visual diff comparison in `snapshots/__tests__/__image_snapshots__/__diff_output__`.
|
|
220
218
|
|
|
221
219
|
If you wish to update the snapshots with your changes run `yarn test:e2e:updatesnapshots`.
|
|
222
220
|
|
package/package.json
CHANGED