cc-core-cli 1.0.100 → 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.100",
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": {
@@ -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);