jsonresume-theme-reference 0.1.0 → 0.2.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 ADDED
@@ -0,0 +1,35 @@
1
+ # jsonresume-theme-reference
2
+
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [36d1759]
8
+ - @jsonresume/core@0.2.0
9
+
10
+ ## 0.2.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 718690c: Add missing JSON Resume sections (certificates/volunteer/publications); visual and crash fixes.
15
+
16
+ Publishes the wave 5-7 theme improvements that currently exist only in git (refs #275). The
17
+ published npm versions are stale: most themes never rendered certificates/volunteer/publications,
18
+ and all carried the `@resume/core` import (renamed to `@jsonresume/core`) plus the Date-shadow
19
+ rendering crash.
20
+
21
+ Minor (gained rendered sections via the "render missing sections" batches #363-#366 and the
22
+ operations-precision a11y/markdown work): all themes listed above as `minor` now render the
23
+ previously-missing certificates/volunteer/publications (and related) sections.
24
+
25
+ Patch (no new sections; visual, crash and dependency-rename fixes only):
26
+
27
+ - consultant-polished: stop crash when certificates/publications present (#359).
28
+ - tokyo-modernist: exports/CI fixes; styled-components moved to dependencies.
29
+ - @jsonresume/theme-stackoverflow: consistent date formatting (#259) + a11y fixes (the
30
+ Yarn-Berry lockfile removal did not change source and does not drive this bump).
31
+ - community-garden, desert-modern, elegant-pink: `@resume/core` -> `@jsonresume/core` import
32
+ fix and visual polish; sections were already rendered.
33
+
34
+ Excludes `@jsonresume/jsonresume-theme-professional` (already current on npm) and the private
35
+ themes (claude, creative-confidence, flat, tailwind).
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2014-2026 JSON Resume contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -46,7 +46,7 @@ const html = render(resume);
46
46
 
47
47
  ```javascript
48
48
  import { render } from 'jsonresume-theme-reference';
49
- import { validateATS } from '@resume/ats-validator';
49
+ import { validateATS } from '@jsonresume/ats-validator';
50
50
  import fs from 'fs';
51
51
 
52
52
  // Complete JSON Resume with all 11 sections
@@ -285,11 +285,11 @@ const html = render(minimalResume); // No errors, renders what's available
285
285
 
286
286
  ## ATS Validation Integration
287
287
 
288
- This theme is built following ATS-friendly guidelines. You can validate any theme output using `@resume/ats-validator`:
288
+ This theme is built following ATS-friendly guidelines. You can validate any theme output using `@jsonresume/ats-validator`:
289
289
 
290
290
  ```javascript
291
291
  import { render } from 'jsonresume-theme-reference';
292
- import { validateATS } from '@resume/ats-validator';
292
+ import { validateATS } from '@jsonresume/ats-validator';
293
293
 
294
294
  const resume = { /* your resume data */ };
295
295
  const html = render(resume);