@flowcore/cli 2.20.0 → 2.21.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 +7 -0
- package/README.md +29 -5
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
* added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
|
|
12
12
|
|
|
13
|
+
## [2.21.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.20.0...v2.21.0) (2024-08-28)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* updated generator with new generator ([fd9db27](https://github.com/flowcore-io/flowcore-cli/commit/fd9db27943e0202ca999692e46494e30bfaffa52))
|
|
19
|
+
|
|
13
20
|
## [2.20.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.2...v2.20.0) (2024-08-28)
|
|
14
21
|
|
|
15
22
|
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ $ npm install -g @flowcore/cli
|
|
|
18
18
|
$ flowcore COMMAND
|
|
19
19
|
running command...
|
|
20
20
|
$ flowcore (--version)
|
|
21
|
-
@flowcore/cli/2.
|
|
21
|
+
@flowcore/cli/2.21.0 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -42,6 +42,7 @@ USAGE
|
|
|
42
42
|
* [`flowcore login`](#flowcore-login)
|
|
43
43
|
* [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
|
|
44
44
|
* [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
|
|
45
|
+
* [`flowcore new generator NAME`](#flowcore-new-generator-name)
|
|
45
46
|
* [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
|
|
46
47
|
* [`flowcore plugins`](#flowcore-plugins)
|
|
47
48
|
* [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
|
|
@@ -83,7 +84,7 @@ EXAMPLES
|
|
|
83
84
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
84
85
|
```
|
|
85
86
|
|
|
86
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.
|
|
87
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.21.0/src/commands/apply.ts)_
|
|
87
88
|
|
|
88
89
|
## `flowcore autocomplete [SHELL]`
|
|
89
90
|
|
|
@@ -302,7 +303,7 @@ EXAMPLES
|
|
|
302
303
|
$ flowcore generate nextjs-entity my-entity
|
|
303
304
|
```
|
|
304
305
|
|
|
305
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
306
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.2.0/src/commands/generate/nextjs-entity.ts)_
|
|
306
307
|
|
|
307
308
|
## `flowcore get adapter [ADAPTER]`
|
|
308
309
|
|
|
@@ -459,7 +460,30 @@ EXAMPLES
|
|
|
459
460
|
$ flowcore new bun-service my-service --no-flowcore
|
|
460
461
|
```
|
|
461
462
|
|
|
462
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
463
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.2.0/src/commands/new/bun-service.ts)_
|
|
464
|
+
|
|
465
|
+
## `flowcore new generator NAME`
|
|
466
|
+
|
|
467
|
+
Create a new generator
|
|
468
|
+
|
|
469
|
+
```
|
|
470
|
+
USAGE
|
|
471
|
+
$ flowcore new generator NAME [--profile <value>]
|
|
472
|
+
|
|
473
|
+
ARGUMENTS
|
|
474
|
+
NAME name of the generator
|
|
475
|
+
|
|
476
|
+
FLAGS
|
|
477
|
+
--profile=<value> Specify the configuration profile to use
|
|
478
|
+
|
|
479
|
+
DESCRIPTION
|
|
480
|
+
Create a new generator
|
|
481
|
+
|
|
482
|
+
EXAMPLES
|
|
483
|
+
$ flowcore new generator my-generator
|
|
484
|
+
```
|
|
485
|
+
|
|
486
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.2.0/src/commands/new/generator.ts)_
|
|
463
487
|
|
|
464
488
|
## `flowcore new nextjs-app NAME`
|
|
465
489
|
|
|
@@ -482,7 +506,7 @@ EXAMPLES
|
|
|
482
506
|
$ flowcore new nextjs-app my-app
|
|
483
507
|
```
|
|
484
508
|
|
|
485
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
509
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.2.0/src/commands/new/nextjs-app.ts)_
|
|
486
510
|
|
|
487
511
|
## `flowcore plugins`
|
|
488
512
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@flowcore/cli-plugin-config": "^1.1.0",
|
|
9
9
|
"@flowcore/cli-plugin-core": "^1.6.2",
|
|
10
10
|
"@flowcore/cli-plugin-data-core": "^2.2.2",
|
|
11
|
-
"@flowcore/cli-plugin-generator": "^1.
|
|
11
|
+
"@flowcore/cli-plugin-generator": "^1.2.0",
|
|
12
12
|
"@flowcore/cli-plugin-scenario": "^2.13.1",
|
|
13
13
|
"@flowcore/time-bucket": "^1.1.0",
|
|
14
14
|
"@oclif/core": "^3",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"prestart": "npm run build",
|
|
97
97
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
98
98
|
},
|
|
99
|
-
"version": "2.
|
|
99
|
+
"version": "2.21.0",
|
|
100
100
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
101
101
|
"keywords": [
|
|
102
102
|
"flowcore",
|