@eeacms/volto-block-style
Advanced tools
Comparing version 5.2.4 to 5.2.5
@@ -7,2 +7,13 @@ ### Changelog | ||
### [5.2.5](https://github.com/eea/volto-block-style/compare/5.2.4...5.2.5) - 13 October 2023 | ||
#### :house: Internal changes | ||
- chore:volto 16 in tests, update docs, fix stylelint overrides [valentinab25 - [`773ff9c`](https://github.com/eea/volto-block-style/commit/773ff9c629198190e7da93e62792bbc0963ee33d)] | ||
#### :hammer_and_wrench: Others | ||
- Update README [Cretu Mihaela - [`7770f12`](https://github.com/eea/volto-block-style/commit/7770f122cfbb9fe5df8000a8dfcdc3544b380a1d)] | ||
- Fix README screenshot path [Alin Voinea - [`50f524b`](https://github.com/eea/volto-block-style/commit/50f524b70ef4ed9149e54cadd8fb83cd1de305eb)] | ||
- Move docs images to dedicated docs folder [Alin Voinea - [`046ce0d`](https://github.com/eea/volto-block-style/commit/046ce0d690c868bf881b682b31603d719ce2a56c)] | ||
### [5.2.4](https://github.com/eea/volto-block-style/compare/5.2.3...5.2.4) - 29 September 2023 | ||
@@ -9,0 +20,0 @@ |
{ | ||
"name": "@eeacms/volto-block-style", | ||
"version": "5.2.4", | ||
"version": "5.2.5", | ||
"description": "volto-block-style: Volto add-on", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -28,3 +28,3 @@ # volto-block-style | ||
![Screenshot](https://github.com/eea/volto-block-style/raw/docs/docs/screenshot.png) | ||
![Screenshot](https://github.com/eea/volto-block-style/raw/master/docs/screenshot.png) | ||
@@ -31,0 +31,0 @@ ## Getting started |
@@ -23,5 +23,5 @@ ## Release | ||
``` | ||
Release-it uses the configuration written in the [`.release-it.json`](./.release-it.json) file located in the root of the repository. | ||
Release-it is a tool that automates 4 important steps in the release process: | ||
@@ -34,3 +34,3 @@ | ||
To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens) | ||
To configure the authentification, you need to export GITHUB_TOKEN for [GitHub](https://github.com/settings/tokens) | ||
@@ -40,5 +40,5 @@ ``` | ||
``` | ||
To configure npm, you can use the `npm login` command or use a configuration file with a TOKEN : | ||
``` | ||
@@ -49,3 +49,3 @@ echo "//registry.npmjs.org/:_authToken=YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY" > .npmrc | ||
#### Using release-it tool | ||
There are 3 yarn scripts that can be run to do the release | ||
@@ -55,10 +55,10 @@ | ||
Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input). | ||
Automatically calculates and presents 3 beta versions - patch, minor and major for you to choose ( or Other for manual input). | ||
``` | ||
? Select increment (next version): | ||
❯ prepatch (0.1.1-beta.0) | ||
preminor (0.2.0-beta.0) | ||
premajor (1.0.0-beta.0) | ||
Other, please specify... | ||
? Select increment (next version): | ||
❯ prepatch (0.1.1-beta.0) | ||
preminor (0.2.0-beta.0) | ||
premajor (1.0.0-beta.0) | ||
Other, please specify... | ||
``` | ||
@@ -69,3 +69,3 @@ | ||
Same as `yarn release-beta`, but with premajor version pre-selected. | ||
##### yarn release | ||
@@ -77,5 +77,5 @@ | ||
> Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST. | ||
> Do not use release-it tool on master branch, the commit on CHANGELOG.md file and the version increase in the package.json file can't be done without a PULL REQUEST. | ||
> Do not keep Pull Requests from develop to master branches open when you are doing beta releases from the develop branch. As long as a PR to master is open, an automatic script will run on every commit and will update both the version and the changelog to a production-ready state - ( MAJOR.MINOR.PATCH mandatory format for version). | ||
152474