resuml 1.14.1 → 1.14.3

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": "resuml",
3
- "version": "1.14.1",
3
+ "version": "1.14.3",
4
4
  "description": "Generate JSON resumes from YAML with theme support",
5
5
  "type": "module",
6
6
  "main": "./dist/api.js",
@@ -97,7 +97,10 @@ async function enrichRender(manifest) {
97
97
  certificates: [{ name: 'C', date: '2020', issuer: 'Is' }],
98
98
  awards: [{ title: 'A', date: '2020', awarder: 'Aw', summary: 'S' }],
99
99
  volunteer: [{ organization: 'V', position: 'P', startDate: '2020', summary: 'S', highlights: ['H'] }],
100
- meta: { theme: 'test' },
100
+ // Include `meta.palette` so themes like material (which set
101
+ // meta.palette.primary without defensive checks) don't trip the probe
102
+ // — matches what the runtime padResume provides.
103
+ meta: { theme: 'test', palette: { primary: '', secondary: '' } },
101
104
  };
102
105
 
103
106
  for (let i = 0; i < manifest.length; i++) {