@featurevisor/cli 1.35.3 → 2.0.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.
Files changed (3) hide show
  1. package/README.md +0 -62
  2. package/bin.js +1 -0
  3. package/package.json +3 -3
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
@@ -1,3 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ // eslint-disable-next-line
3
4
  require("./lib/index");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/cli",
3
- "version": "1.35.3",
3
+ "version": "2.0.0",
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": "1.35.3"
46
+ "@featurevisor/core": "2.0.0"
47
47
  },
48
- "gitHead": "253ff5dade7c9ee953f6a57cda097a6c9ed93aa2"
48
+ "gitHead": "9817e05a07735294c750ee921991509b67015afd"
49
49
  }