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
|
@@ -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);
|