@flowcore/cli 3.3.1 → 3.4.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 +34 -7
- 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
|
+
## [3.4.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.1...v3.4.0) (2024-09-05)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* added new transformer command ([ba69d1f](https://github.com/flowcore-io/flowcore-cli/commit/ba69d1f93c87780e8f4bc0970b6dc712ce0d0c0e))
|
|
19
|
+
|
|
13
20
|
## [3.3.1](https://github.com/flowcore-io/flowcore-cli/compare/v3.3.0...v3.3.1) (2024-09-04)
|
|
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/3.
|
|
21
|
+
@flowcore/cli/3.4.0 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -52,6 +52,7 @@ USAGE
|
|
|
52
52
|
* [`flowcore new generator NAME`](#flowcore-new-generator-name)
|
|
53
53
|
* [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
|
|
54
54
|
* [`flowcore new plugin NAME`](#flowcore-new-plugin-name)
|
|
55
|
+
* [`flowcore new transformer NAME`](#flowcore-new-transformer-name)
|
|
55
56
|
* [`flowcore plugins`](#flowcore-plugins)
|
|
56
57
|
* [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
|
|
57
58
|
* [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
|
|
@@ -93,7 +94,7 @@ EXAMPLES
|
|
|
93
94
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
94
95
|
```
|
|
95
96
|
|
|
96
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.
|
|
97
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.4.0/src/commands/apply.ts)_
|
|
97
98
|
|
|
98
99
|
## `flowcore auth delete key API_KEY_NAME`
|
|
99
100
|
|
|
@@ -455,7 +456,7 @@ EXAMPLES
|
|
|
455
456
|
$ flowcore generate nextjs-entity my-entity
|
|
456
457
|
```
|
|
457
458
|
|
|
458
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
459
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/generate/nextjs-entity.ts)_
|
|
459
460
|
|
|
460
461
|
## `flowcore get adapter [ADAPTER]`
|
|
461
462
|
|
|
@@ -641,7 +642,7 @@ EXAMPLES
|
|
|
641
642
|
$ flowcore new bun-service my-service --no-flowcore
|
|
642
643
|
```
|
|
643
644
|
|
|
644
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
645
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/bun-service.ts)_
|
|
645
646
|
|
|
646
647
|
## `flowcore new generator NAME`
|
|
647
648
|
|
|
@@ -664,7 +665,7 @@ EXAMPLES
|
|
|
664
665
|
$ flowcore new generator my-generator
|
|
665
666
|
```
|
|
666
667
|
|
|
667
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
668
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/generator.ts)_
|
|
668
669
|
|
|
669
670
|
## `flowcore new nextjs-app NAME`
|
|
670
671
|
|
|
@@ -687,7 +688,7 @@ EXAMPLES
|
|
|
687
688
|
$ flowcore new nextjs-app my-app
|
|
688
689
|
```
|
|
689
690
|
|
|
690
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
691
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/nextjs-app.ts)_
|
|
691
692
|
|
|
692
693
|
## `flowcore new plugin NAME`
|
|
693
694
|
|
|
@@ -710,7 +711,33 @@ EXAMPLES
|
|
|
710
711
|
$ flowcore new plugin my-plugin
|
|
711
712
|
```
|
|
712
713
|
|
|
713
|
-
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.
|
|
714
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/plugin.ts)_
|
|
715
|
+
|
|
716
|
+
## `flowcore new transformer NAME`
|
|
717
|
+
|
|
718
|
+
Create a new Bun transformer
|
|
719
|
+
|
|
720
|
+
```
|
|
721
|
+
USAGE
|
|
722
|
+
$ flowcore new transformer NAME [--profile <value>] [--no-flowcore]
|
|
723
|
+
|
|
724
|
+
ARGUMENTS
|
|
725
|
+
NAME name of the bun transformer
|
|
726
|
+
|
|
727
|
+
FLAGS
|
|
728
|
+
--no-flowcore do not use flowcore
|
|
729
|
+
--profile=<value> Specify the configuration profile to use
|
|
730
|
+
|
|
731
|
+
DESCRIPTION
|
|
732
|
+
Create a new Bun transformer
|
|
733
|
+
|
|
734
|
+
EXAMPLES
|
|
735
|
+
$ flowcore new transformer my-transformer
|
|
736
|
+
|
|
737
|
+
$ flowcore new transformer my-transformer --no-flowcore
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
_See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.5.0/src/commands/new/transformer.ts)_
|
|
714
741
|
|
|
715
742
|
## `flowcore plugins`
|
|
716
743
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@flowcore/cli-plugin-config": "^1.1.0",
|
|
10
10
|
"@flowcore/cli-plugin-core": "^2.0.0",
|
|
11
11
|
"@flowcore/cli-plugin-data-core": "^2.2.2",
|
|
12
|
-
"@flowcore/cli-plugin-generator": "^1.
|
|
12
|
+
"@flowcore/cli-plugin-generator": "^1.5.0",
|
|
13
13
|
"@flowcore/cli-plugin-scenario": "^3.3.1",
|
|
14
14
|
"@flowcore/cli-plugin-tenant-management": "^1.0.0",
|
|
15
15
|
"@flowcore/time-bucket": "^1.1.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"prestart": "npm run build",
|
|
105
105
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
106
106
|
},
|
|
107
|
-
"version": "3.
|
|
107
|
+
"version": "3.4.0",
|
|
108
108
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
109
109
|
"keywords": [
|
|
110
110
|
"flowcore",
|