uniweb 0.8.25 → 0.8.26

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": "uniweb",
3
- "version": "0.8.25",
3
+ "version": "0.8.26",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,11 +42,11 @@
42
42
  "prompts": "^2.4.2",
43
43
  "tar": "^7.0.0",
44
44
  "@uniweb/core": "0.5.15",
45
- "@uniweb/runtime": "0.6.20",
45
+ "@uniweb/runtime": "0.6.21",
46
46
  "@uniweb/kit": "0.7.16"
47
47
  },
48
48
  "peerDependencies": {
49
- "@uniweb/build": "0.8.24",
49
+ "@uniweb/build": "0.8.25",
50
50
  "@uniweb/content-reader": "1.1.4",
51
51
  "@uniweb/semantic-parser": "1.1.7"
52
52
  },
@@ -841,6 +841,16 @@ async function runAudit(siteRoot, config, args) {
841
841
  log(`\n${colors.dim}Run with --clean to remove stale entries.${colors.reset}`)
842
842
  }
843
843
  }
844
+
845
+ // Report entries that need inline tag updates
846
+ const needsTagsTotal = results.reduce((sum, r) => sum + (r.needsTags?.length || 0), 0)
847
+ if (needsTagsTotal > 0) {
848
+ log(`\n${colors.yellow}${needsTagsTotal} translation(s) have inline marks in the source but not in the translation.`)
849
+ log(`These translations won't preserve accent/span styling.${colors.reset}`)
850
+ if (!verbose) {
851
+ log(`${colors.dim}Run with --verbose to see which entries are affected.${colors.reset}`)
852
+ }
853
+ }
844
854
  } catch (err) {
845
855
  error(`Audit failed: ${err.message}`)
846
856
  process.exit(1)