@featurevisor/cli 0.0.4 → 0.1.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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0](https://github.com/fahad19/featurevisor/compare/v0.0.4...v0.1.0) (2023-03-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* test PR for triggering minor release ([#2](https://github.com/fahad19/featurevisor/issues/2)) ([1c986f9](https://github.com/fahad19/featurevisor/commit/1c986f9ee4ee4669a118380771cb43fdf66e0137))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.0.4](https://github.com/fahad19/featurevisor/compare/v0.0.3...v0.0.4) (2023-03-05)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @featurevisor/cli
|
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Test your generated datafiles using the SDK, against specs written in YAMLs.
|
|
|
59
59
|
$ featurevisor test
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
See test specs in YAMLs [here](../../examples/example-1/tests) for inspiration
|
|
62
|
+
See test specs in YAMLs [here](../../examples/example-1/tests) for inspiration.
|
|
63
63
|
|
|
64
64
|
## License
|
|
65
65
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/cli",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "CLI package of Featurevisor",
|
|
5
5
|
"main": "bin.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
},
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@featurevisor/core": "^0.0
|
|
47
|
+
"@featurevisor/core": "^0.1.0",
|
|
48
48
|
"yargs": "^17.6.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/yargs": "^17.0.22"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "e184134717a604dcc170d1c6ff1456a0eb3de56f"
|
|
54
54
|
}
|