@flowcore/cli 2.19.2 → 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 +14 -0
- package/README.md +63 -12
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
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
|
+
|
|
20
|
+
## [2.20.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.2...v2.20.0) (2024-08-28)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* updated generator library to 1.1.0 for new bun service generator ([cab6273](https://github.com/flowcore-io/flowcore-cli/commit/cab62738878574ebaafcb5f84f05a2238ce4a9a1))
|
|
26
|
+
|
|
13
27
|
## [2.19.2](https://github.com/flowcore-io/flowcore-cli/compare/v2.19.1...v2.19.2) (2024-08-26)
|
|
14
28
|
|
|
15
29
|
|
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
|
|
@@ -35,12 +35,14 @@ USAGE
|
|
|
35
35
|
* [`flowcore data-core generate event-type FLOWTYPE`](#flowcore-data-core-generate-event-type-flowtype)
|
|
36
36
|
* [`flowcore data-core generate flow-type`](#flowcore-data-core-generate-flow-type)
|
|
37
37
|
* [`flowcore data-core generate manifest`](#flowcore-data-core-generate-manifest)
|
|
38
|
-
* [`flowcore generate
|
|
38
|
+
* [`flowcore generate nextjs-entity NAME`](#flowcore-generate-nextjs-entity-name)
|
|
39
39
|
* [`flowcore get adapter [ADAPTER]`](#flowcore-get-adapter-adapter)
|
|
40
40
|
* [`flowcore get scenario [SCENARIO]`](#flowcore-get-scenario-scenario)
|
|
41
41
|
* [`flowcore help [COMMANDS]`](#flowcore-help-commands)
|
|
42
42
|
* [`flowcore login`](#flowcore-login)
|
|
43
43
|
* [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
|
|
44
|
+
* [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
|
|
45
|
+
* [`flowcore new generator NAME`](#flowcore-new-generator-name)
|
|
44
46
|
* [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
|
|
45
47
|
* [`flowcore plugins`](#flowcore-plugins)
|
|
46
48
|
* [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
|
|
@@ -82,7 +84,7 @@ EXAMPLES
|
|
|
82
84
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
83
85
|
```
|
|
84
86
|
|
|
85
|
-
_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)_
|
|
86
88
|
|
|
87
89
|
## `flowcore autocomplete [SHELL]`
|
|
88
90
|
|
|
@@ -280,13 +282,13 @@ EXAMPLES
|
|
|
280
282
|
|
|
281
283
|
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.2.2/src/commands/data-core/generate/manifest.ts)_
|
|
282
284
|
|
|
283
|
-
## `flowcore generate
|
|
285
|
+
## `flowcore generate nextjs-entity NAME`
|
|
284
286
|
|
|
285
|
-
Create a new
|
|
287
|
+
Create a new NextJS entity using the Flowcore IDD approach
|
|
286
288
|
|
|
287
289
|
```
|
|
288
290
|
USAGE
|
|
289
|
-
$ flowcore generate
|
|
291
|
+
$ flowcore generate nextjs-entity NAME [--profile <value>]
|
|
290
292
|
|
|
291
293
|
ARGUMENTS
|
|
292
294
|
NAME name of the entity to generate
|
|
@@ -295,13 +297,13 @@ FLAGS
|
|
|
295
297
|
--profile=<value> Specify the configuration profile to use
|
|
296
298
|
|
|
297
299
|
DESCRIPTION
|
|
298
|
-
Create a new
|
|
300
|
+
Create a new NextJS entity using the Flowcore IDD approach
|
|
299
301
|
|
|
300
302
|
EXAMPLES
|
|
301
|
-
$ flowcore generate
|
|
303
|
+
$ flowcore generate nextjs-entity my-entity
|
|
302
304
|
```
|
|
303
305
|
|
|
304
|
-
_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)_
|
|
305
307
|
|
|
306
308
|
## `flowcore get adapter [ADAPTER]`
|
|
307
309
|
|
|
@@ -434,9 +436,58 @@ EXAMPLES
|
|
|
434
436
|
|
|
435
437
|
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.13.1/src/commands/logs/adapter.ts)_
|
|
436
438
|
|
|
439
|
+
## `flowcore new bun-service NAME`
|
|
440
|
+
|
|
441
|
+
Create a new Bun service
|
|
442
|
+
|
|
443
|
+
```
|
|
444
|
+
USAGE
|
|
445
|
+
$ flowcore new bun-service NAME [--profile <value>] [--no-flowcore]
|
|
446
|
+
|
|
447
|
+
ARGUMENTS
|
|
448
|
+
NAME name of the bun service
|
|
449
|
+
|
|
450
|
+
FLAGS
|
|
451
|
+
--no-flowcore do not use flowcore
|
|
452
|
+
--profile=<value> Specify the configuration profile to use
|
|
453
|
+
|
|
454
|
+
DESCRIPTION
|
|
455
|
+
Create a new Bun service
|
|
456
|
+
|
|
457
|
+
EXAMPLES
|
|
458
|
+
$ flowcore new bun-service my-service
|
|
459
|
+
|
|
460
|
+
$ flowcore new bun-service my-service --no-flowcore
|
|
461
|
+
```
|
|
462
|
+
|
|
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)_
|
|
487
|
+
|
|
437
488
|
## `flowcore new nextjs-app NAME`
|
|
438
489
|
|
|
439
|
-
Create a new
|
|
490
|
+
Create a new NextJS application using the Flowcore IDD approach
|
|
440
491
|
|
|
441
492
|
```
|
|
442
493
|
USAGE
|
|
@@ -449,13 +500,13 @@ FLAGS
|
|
|
449
500
|
--profile=<value> Specify the configuration profile to use
|
|
450
501
|
|
|
451
502
|
DESCRIPTION
|
|
452
|
-
Create a new
|
|
503
|
+
Create a new NextJS application using the Flowcore IDD approach
|
|
453
504
|
|
|
454
505
|
EXAMPLES
|
|
455
506
|
$ flowcore new nextjs-app my-app
|
|
456
507
|
```
|
|
457
508
|
|
|
458
|
-
_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)_
|
|
459
510
|
|
|
460
511
|
## `flowcore plugins`
|
|
461
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",
|