cc-core-cli 1.0.99 → 1.0.101

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.99",
3
+ "version": "1.0.101",
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
  DeployModule,
41
41
  CustomFunctionModule,
42
42
  CacheModule,
43
- PipelineModule
43
+ PipelineModule,
44
+ RewriteUrlModule
44
45
  } from '@shopstack/cc-core-lib/core'
45
46
 
46
47
  import { CoreModule } from './core/core.module'
@@ -155,6 +156,7 @@ if (+process.env.MONGODB_MAX_POOL_SIZE) {
155
156
  UserModule,
156
157
  PipelineModule,
157
158
  LayoutModule,
159
+ RewriteUrlModule,
158
160
 
159
161
  // ...RUN_CUSTOM_MODULES,
160
162
 
@@ -81,7 +81,8 @@ import {
81
81
  PipelineJobService,
82
82
  PipelineLogService,
83
83
  PrintLogService,
84
- redisCache
84
+ redisCache,
85
+ RewriteUrlService
85
86
  } from '@shopstack/cc-core-lib/core'
86
87
 
87
88
  import { CUSTOM_MODULES } from "src/modules/modules";
@@ -207,6 +208,7 @@ async function initial(app: NestFastifyApplication) {
207
208
  await initialService(app, PipelineService);
208
209
  await initialService(app, PipelineJobService);
209
210
  await initialService(app, PipelineLogService);
211
+ await initialService(app, RewriteUrlService);
210
212
 
211
213
  await initialService(app, EntitiesService);
212
214
  await refreshService(app, EntitiesService);