@featurevisor/cli 1.35.3 → 2.0.1
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 +8 -0
- package/README.md +0 -62
- package/bin.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [2.0.1](https://github.com/featurevisor/featurevisor/compare/v2.0.0...v2.0.1) (2025-07-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @featurevisor/cli
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.35.3](https://github.com/featurevisor/featurevisor/compare/v1.35.2...v1.35.3) (2025-04-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @featurevisor/cli
|
package/README.md
CHANGED
|
@@ -4,68 +4,6 @@ CLI package of Featurevisor.
|
|
|
4
4
|
|
|
5
5
|
Visit [https://featurevisor.com/docs/cli](https://featurevisor.com/docs/cli) for more information.
|
|
6
6
|
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
$ npm install --save-dev @featurevisor/cli
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
### `init`
|
|
16
|
-
|
|
17
|
-
Initialize your project.
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
$ mkdir my-featurevisor-project && cd my-featurevisor-project
|
|
21
|
-
$ npx @featurevisor/cli init
|
|
22
|
-
$ npm install
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
If you want to initialize your project with a specific example:
|
|
26
|
-
|
|
27
|
-
```
|
|
28
|
-
$ npx @featurevisor/cli init --example <name>
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
Examples found [here](../../examples).
|
|
32
|
-
|
|
33
|
-
### `lint`
|
|
34
|
-
|
|
35
|
-
Check if your YAMLs are valid.
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
$ npx featurevisor lint
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### `build`
|
|
43
|
-
|
|
44
|
-
Build your datafiles.
|
|
45
|
-
|
|
46
|
-
```
|
|
47
|
-
$ npx featurevisor build
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
### `test`
|
|
51
|
-
|
|
52
|
-
Test your generated datafiles using the SDK, against specs written in YAMLs.
|
|
53
|
-
|
|
54
|
-
```
|
|
55
|
-
$ npx featurevisor test
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
See test specs in YAMLs [here](../../examples/example-1/tests) for inspiration.
|
|
59
|
-
|
|
60
|
-
### `site`
|
|
61
|
-
|
|
62
|
-
Start a local server to view your project's site.
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
$ npx featurevisor site export
|
|
66
|
-
$ npx featurevisor site serve
|
|
67
|
-
```
|
|
68
|
-
|
|
69
7
|
## License
|
|
70
8
|
|
|
71
9
|
MIT © [Fahad Heylaal](https://fahad19.com)
|
package/bin.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "CLI package of Featurevisor",
|
|
5
5
|
"main": "bin.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"license": "MIT",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@featurevisor/core": "
|
|
46
|
+
"@featurevisor/core": "2.0.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "f5d883e1d6f8ba1b0c14fbbd79329b98f66b46e8"
|
|
49
49
|
}
|