cc-core-cli 1.0.137 → 1.0.138

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.137",
3
+ "version": "1.0.138",
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": {
@@ -23,7 +23,7 @@
23
23
  "sonar:coverage": "jest --coverage --coverageReporters=lcov --coverageDirectory=coverage"
24
24
  },
25
25
  "dependencies": {
26
- "@shopstack/cc-core-lib": "^2.5.274",
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();