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 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. git flow release start <version>
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 flow release finish <version>
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
@@ -5,7 +5,7 @@ Plugin for [Vitest](https://vitest.dev/) to allow tests to be written in [Cucumb
5
5
  ## Installation
6
6
 
7
7
  ```
8
- $ npm install --save-dev SamZiegler/vitest-cucumber-plugin
8
+ $ npm install --save-dev vitest-cucumber-plugin
9
9
  ```
10
10
 
11
11
  ## Usage
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest-cucumber-plugin",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Plugin for Vitest which allows for tests to be written in Cucumber format.",
5
5
  "keywords": [
6
6
  "vite",