cc-core-cli 1.0.137 → 1.0.139
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
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"sonar:coverage": "jest --coverage --coverageReporters=lcov --coverageDirectory=coverage"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@shopstack/cc-core-lib": "
|
|
26
|
+
"@shopstack/cc-core-lib": "2.5.328",
|
|
27
27
|
"reflect-metadata": "^0.1.14"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
@@ -82,6 +82,7 @@ import {
|
|
|
82
82
|
redisCache,
|
|
83
83
|
RewriteUrlService,
|
|
84
84
|
SearchTextService,
|
|
85
|
+
ReindexSearchTextService,
|
|
85
86
|
} from "@shopstack/cc-core-lib/core";
|
|
86
87
|
|
|
87
88
|
import { CUSTOM_MODULES } from "src/modules/modules";
|
|
@@ -177,6 +178,7 @@ async function initial(app: NestFastifyApplication) {
|
|
|
177
178
|
await initialService(app, LayoutShareWidgetService);
|
|
178
179
|
|
|
179
180
|
await initialService(app, SearchTextService);
|
|
181
|
+
await initialService(app, ReindexSearchTextService);
|
|
180
182
|
|
|
181
183
|
await initialCustomModules();
|
|
182
184
|
await initialCustomProviders();
|