@uxf/scripts 11.93.0 → 11.103.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/scripts",
3
- "version": "11.93.0",
3
+ "version": "11.103.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -33,11 +33,11 @@
33
33
  "node": ">=24"
34
34
  },
35
35
  "dependencies": {
36
- "axios": "1.13.2",
37
- "cheerio": "1.1.2",
36
+ "axios": "1.13.4",
37
+ "cheerio": "1.2.0",
38
38
  "dayjs": "1.11.19",
39
39
  "fast-glob": "3.3.3",
40
- "got": "14.6.5",
40
+ "got": "14.6.6",
41
41
  "madge": "8.0.0",
42
42
  "robots-txt-parser": "2.0.3",
43
43
  "yaml": "2.8.2",
@@ -334,6 +334,11 @@ async function main(include, output, defaultNamespaces, pagesDirectory) {
334
334
  }
335
335
  }
336
336
 
337
+ if (result["/_app"]) {
338
+ result["*"] = Array.from(new Set([...result["*"], ...result["/_app"]])).sort();
339
+ delete result["/_app"];
340
+ }
341
+
337
342
  writeFileSync(path.resolve(process.cwd(), output), JSON.stringify(result, null, 4));
338
343
 
339
344
  console.log("Namespaces generated!");