vitest-cucumber-plugin 0.1.3 → 0.1.4
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/CONTRIBUTING.md +6 -2
- package/README.md +1 -1
- package/RELEASE_NOTES.md +1 -0
- package/package.json +1 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -36,7 +36,11 @@ branching model. The 'main' branch the release branch and is only pushed to dur
|
|
|
36
36
|
|
|
37
37
|
## Doing a release
|
|
38
38
|
|
|
39
|
-
1.
|
|
39
|
+
1. ```$ VERSION=<version>```
|
|
40
|
+
1. ```$ git flow release start $VERSION```
|
|
40
41
|
1. Update version number in package.json
|
|
41
42
|
1. Add the release notes to [RELEASE_NOTES.md](RELEASE_NOTES.md).
|
|
42
|
-
1. git
|
|
43
|
+
1. ```git add . ; git commit -m $VERSION```
|
|
44
|
+
1. ```git flow release finish $VERSION```
|
|
45
|
+
1. ```git push origin $VERSION```
|
|
46
|
+
1. npm publish
|
package/README.md
CHANGED
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
* v0.1.4 : Changed README to point to RPM registry
|
|
1
2
|
* v0.1.3 : Import modules from generated code to make sure they are processed correctly
|
|
2
3
|
* v0.1.2 : Set default log level to warn and make it configurable
|
|
3
4
|
* v0.1.1 : Use root dir from the config to find step_definitions dir
|