@featurevisor/cli 1.10.1 → 1.11.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/.eslintcache +1 -1
- package/CHANGELOG.md +19 -0
- package/README.md +10 -14
- package/package.json +3 -3
package/.eslintcache
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"/home/runner/work/featurevisor/featurevisor/packages/cli/bin.js":"1","/home/runner/work/featurevisor/featurevisor/packages/cli/src/index.ts":"2"},{"size":45,"mtime":
|
|
1
|
+
[{"/home/runner/work/featurevisor/featurevisor/packages/cli/bin.js":"1","/home/runner/work/featurevisor/featurevisor/packages/cli/src/index.ts":"2"},{"size":45,"mtime":1710435751243,"results":"3","hashOfConfig":"4"},{"size":5920,"mtime":1710435751243,"results":"5","hashOfConfig":"4"},{"filePath":"6","messages":"7","suppressedMessages":"8","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1n91dwg",{"filePath":"9","messages":"10","suppressedMessages":"11","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/runner/work/featurevisor/featurevisor/packages/cli/bin.js",[],[],"/home/runner/work/featurevisor/featurevisor/packages/cli/src/index.ts",[],[]]
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [1.11.1](https://github.com/featurevisor/featurevisor/compare/v1.11.0...v1.11.1) (2024-03-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @featurevisor/cli
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.11.0](https://github.com/featurevisor/featurevisor/compare/v1.10.1...v1.11.0) (2024-03-10)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* revisioning info moved to its own file ([#274](https://github.com/featurevisor/featurevisor/issues/274)) ([6a175d1](https://github.com/featurevisor/featurevisor/commit/6a175d1be01c1ab78661bbd93d535de69af47135))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [1.10.1](https://github.com/featurevisor/featurevisor/compare/v1.10.0...v1.10.1) (2024-03-10)
|
|
7
26
|
|
|
8
27
|
|
package/README.md
CHANGED
|
@@ -7,13 +7,7 @@ Visit [https://featurevisor.com/docs/cli](https://featurevisor.com/docs/cli) for
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
$ npm install -
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Or via `npx`:
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
$ npx featurevisor <command>
|
|
10
|
+
$ npm install --save-dev @featurevisor/cli
|
|
17
11
|
```
|
|
18
12
|
|
|
19
13
|
## Usage
|
|
@@ -23,13 +17,15 @@ $ npx featurevisor <command>
|
|
|
23
17
|
Initialize your project.
|
|
24
18
|
|
|
25
19
|
```
|
|
26
|
-
$ featurevisor
|
|
20
|
+
$ mkdir my-featurevisor-project && cd my-featurevisor-project
|
|
21
|
+
$ npx @featurevisor/cli init
|
|
22
|
+
$ npm install
|
|
27
23
|
```
|
|
28
24
|
|
|
29
25
|
If you want to initialize your project with a specific example:
|
|
30
26
|
|
|
31
27
|
```
|
|
32
|
-
$ featurevisor init --example <name>
|
|
28
|
+
$ npx @featurevisor/cli init --example <name>
|
|
33
29
|
```
|
|
34
30
|
|
|
35
31
|
Examples found [here](../../examples).
|
|
@@ -39,7 +35,7 @@ Examples found [here](../../examples).
|
|
|
39
35
|
Check if your YAMLs are valid.
|
|
40
36
|
|
|
41
37
|
```
|
|
42
|
-
$ featurevisor lint
|
|
38
|
+
$ npx featurevisor lint
|
|
43
39
|
```
|
|
44
40
|
|
|
45
41
|
|
|
@@ -48,7 +44,7 @@ $ featurevisor lint
|
|
|
48
44
|
Build your datafiles.
|
|
49
45
|
|
|
50
46
|
```
|
|
51
|
-
$ featurevisor build
|
|
47
|
+
$ npx featurevisor build
|
|
52
48
|
```
|
|
53
49
|
|
|
54
50
|
### `test`
|
|
@@ -56,7 +52,7 @@ $ featurevisor build
|
|
|
56
52
|
Test your generated datafiles using the SDK, against specs written in YAMLs.
|
|
57
53
|
|
|
58
54
|
```
|
|
59
|
-
$ featurevisor test
|
|
55
|
+
$ npx featurevisor test
|
|
60
56
|
```
|
|
61
57
|
|
|
62
58
|
See test specs in YAMLs [here](../../examples/example-1/tests) for inspiration.
|
|
@@ -66,8 +62,8 @@ See test specs in YAMLs [here](../../examples/example-1/tests) for inspiration.
|
|
|
66
62
|
Start a local server to view your project's site.
|
|
67
63
|
|
|
68
64
|
```
|
|
69
|
-
$ featurevisor site export
|
|
70
|
-
$ featurevisor site serve
|
|
65
|
+
$ npx featurevisor site export
|
|
66
|
+
$ npx featurevisor site serve
|
|
71
67
|
```
|
|
72
68
|
|
|
73
69
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "CLI package of Featurevisor",
|
|
5
5
|
"main": "bin.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
},
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@featurevisor/core": "^1.
|
|
50
|
+
"@featurevisor/core": "^1.11.1",
|
|
51
51
|
"yargs": "^17.6.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/yargs": "^17.0.22"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b0de54112d2af4ba4af13dc7a554b18a60b2a574"
|
|
57
57
|
}
|