@se-studio/site-check 2.6.0 → 2.6.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fe92eb9: Fix `smoke-test-one` CMS integrity helper imports (`loadSmokeConfigFile`, `isCmsIntegrityEnabled`).
8
+
3
9
  ## 2.6.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@se-studio/site-check",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Validate SE marketing sites (sitemap, llms.txt) and download markdown files preserving structure",
5
5
  "repository": {
6
6
  "type": "git",
@@ -177,9 +177,12 @@ async function loadCacheLogAudit() {
177
177
  }
178
178
 
179
179
  async function loadSmokeIntegrityModules() {
180
- const staticModule = await import(path.join(packageDir, 'dist/smoke-test/static.js'));
181
- const integrityModule = await import(path.join(packageDir, 'dist/cms-integrity/report.js'));
182
- return { ...staticModule, ...integrityModule };
180
+ const [staticModule, configModule, integrityModule] = await Promise.all([
181
+ import(path.join(packageDir, 'dist/smoke-test/static.js')),
182
+ import(path.join(packageDir, 'dist/smoke-test/config.js')),
183
+ import(path.join(packageDir, 'dist/cms-integrity/report.js')),
184
+ ]);
185
+ return { ...staticModule, ...configModule, ...integrityModule };
183
186
  }
184
187
 
185
188
  const smokeCasesPath = path.join(process.cwd(), 'smoke.cases.json');