cc-core-cli 1.0.40 → 1.0.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -40,7 +40,8 @@ import {
40
40
  DatabaseModule,
41
41
  DeployModule,
42
42
  CustomFunctionModule,
43
- CacheModule
43
+ CacheModule,
44
+ PipelineModule
44
45
  } from '@shopstack/cc-core-lib/core'
45
46
 
46
47
  import { CoreModule } from './core/core.module'
@@ -150,7 +151,7 @@ if (+process.env.MONGODB_MAX_POOL_SIZE) {
150
151
  NotificationModule,
151
152
  ShortlyModule,
152
153
  UserModule,
153
-
154
+ PipelineModule,
154
155
  LayoutModule,
155
156
 
156
157
  // ...RUN_CUSTOM_MODULES,
@@ -34,7 +34,8 @@ import {
34
34
  ShortlyModule,
35
35
  WidgetModule,
36
36
  LayoutModule,
37
- AuditLogModule
37
+ AuditLogModule,
38
+ PipelineModule
38
39
  } from '@shopstack/cc-core-lib/core'
39
40
 
40
41
  const SPECIFY_CUSTOM_MODULES =
@@ -76,6 +77,7 @@ const RUN_CUSTOM_MODULES =
76
77
  NotificationModule,
77
78
  ShortlyModule,
78
79
  WidgetModule,
80
+ PipelineModule,
79
81
  LayoutModule,
80
82
 
81
83
  ...RUN_CUSTOM_MODULES
@@ -190,12 +190,6 @@ async function initial(app: NestFastifyApplication) {
190
190
 
191
191
  await initialService(app, LayoutShareWidgetService);
192
192
 
193
- await initialProvider(ImportPipelineProvider, "pipeline", "import");
194
- await initialProvider(ExportPipelineProvider, "pipeline", "export");
195
- await initialProvider(ReportPipelineProvider, "pipeline", "report");
196
- await initialProvider(EmailPipelineProvider, "pipeline", "email");
197
- await initialProvider(SmsPipelineProvider, "pipeline", "sms");
198
-
199
193
  await initialCustomModules();
200
194
  await initialCustomProviders();
201
195
  await initialSettingLayouts();