@flowcore/cli 2.21.0 → 2.22.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 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.22.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.21.0...v2.22.0) (2024-08-29)
14
+
15
+
16
+ ### Features
17
+
18
+ * added create new plugin feature ([fbeadda](https://github.com/flowcore-io/flowcore-cli/commit/fbeaddaa4e3cf956a425aca7a4d6948c397df217))
19
+
13
20
  ## [2.21.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.20.0...v2.21.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.0 linux-x64 node-v20.17.0
21
+ @flowcore/cli/2.22.0 linux-x64 node-v20.17.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -44,6 +44,7 @@ USAGE
44
44
  * [`flowcore new bun-service NAME`](#flowcore-new-bun-service-name)
45
45
  * [`flowcore new generator NAME`](#flowcore-new-generator-name)
46
46
  * [`flowcore new nextjs-app NAME`](#flowcore-new-nextjs-app-name)
47
+ * [`flowcore new plugin NAME`](#flowcore-new-plugin-name)
47
48
  * [`flowcore plugins`](#flowcore-plugins)
48
49
  * [`flowcore plugins:install PLUGIN...`](#flowcore-pluginsinstall-plugin)
49
50
  * [`flowcore plugins:inspect PLUGIN...`](#flowcore-pluginsinspect-plugin)
@@ -84,7 +85,7 @@ EXAMPLES
84
85
  $ flowcore apply -f ./path/to/manifest.yml
85
86
  ```
86
87
 
87
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.21.0/src/commands/apply.ts)_
88
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.22.0/src/commands/apply.ts)_
88
89
 
89
90
  ## `flowcore autocomplete [SHELL]`
90
91
 
@@ -303,7 +304,7 @@ EXAMPLES
303
304
  $ flowcore generate nextjs-entity my-entity
304
305
  ```
305
306
 
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)_
307
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/generate/nextjs-entity.ts)_
307
308
 
308
309
  ## `flowcore get adapter [ADAPTER]`
309
310
 
@@ -460,7 +461,7 @@ EXAMPLES
460
461
  $ flowcore new bun-service my-service --no-flowcore
461
462
  ```
462
463
 
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
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/bun-service.ts)_
464
465
 
465
466
  ## `flowcore new generator NAME`
466
467
 
@@ -483,7 +484,7 @@ EXAMPLES
483
484
  $ flowcore new generator my-generator
484
485
  ```
485
486
 
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
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/generator.ts)_
487
488
 
488
489
  ## `flowcore new nextjs-app NAME`
489
490
 
@@ -506,7 +507,30 @@ EXAMPLES
506
507
  $ flowcore new nextjs-app my-app
507
508
  ```
508
509
 
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)_
510
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/nextjs-app.ts)_
511
+
512
+ ## `flowcore new plugin NAME`
513
+
514
+ Create a new plugin
515
+
516
+ ```
517
+ USAGE
518
+ $ flowcore new plugin NAME [--profile <value>]
519
+
520
+ ARGUMENTS
521
+ NAME name of the plugin
522
+
523
+ FLAGS
524
+ --profile=<value> Specify the configuration profile to use
525
+
526
+ DESCRIPTION
527
+ Create a new plugin
528
+
529
+ EXAMPLES
530
+ $ flowcore new plugin my-plugin
531
+ ```
532
+
533
+ _See code: [@flowcore/cli-plugin-generator](https://github.com/flowcore/flowcore-cli-plugin-generator/blob/v1.3.0/src/commands/new/plugin.ts)_
510
534
 
511
535
  ## `flowcore plugins`
512
536
 
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "2.21.0"
51
+ "version": "2.22.0"
52
52
  }
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.2.0",
11
+ "@flowcore/cli-plugin-generator": "^1.3.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.21.0",
99
+ "version": "2.22.0",
100
100
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
101
101
  "keywords": [
102
102
  "flowcore",