jsonresume-theme-sidebar 0.2.0 → 0.2.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +36 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # jsonresume-theme-sidebar
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ff0f85b]
8
+ - @jsonresume/core@0.3.0
9
+
10
+ ## 0.2.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [36d1759]
15
+ - @jsonresume/core@0.2.0
16
+
3
17
  ## 0.2.0
4
18
 
5
19
  ### Minor Changes
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Sidebar
2
+
3
+ Two-column layout with dark blue sidebar and professional appearance.
4
+
5
+ ![Sidebar theme preview](https://raw.githubusercontent.com/jsonresume/jsonresume.org/master/apps/homepage2/public/img/themes/sidebar.png)
6
+
7
+ **Tags:** professional, two-column, sidebar, modern
8
+
9
+ ## Use it
10
+
11
+ Preview it live on the JSON Resume registry:
12
+
13
+ - https://registry.jsonresume.org/thomasdavis?theme=sidebar
14
+
15
+ Install and use it with the JSON Resume CLI:
16
+
17
+ ```sh
18
+ npm install jsonresume-theme-sidebar
19
+ resume export resume.html --theme sidebar
20
+ ```
21
+
22
+ ## Sections
23
+
24
+ Renders all standard JSON Resume sections: work, education, skills, projects, volunteer, awards, publications, languages, interests, references.
25
+
26
+ ## Development
27
+
28
+ This theme lives in the [jsonresume.org](https://github.com/jsonresume/jsonresume.org) monorepo. Build it from the repo root with:
29
+
30
+ ```sh
31
+ pnpm --filter jsonresume-theme-sidebar build
32
+ ```
33
+
34
+ ## License
35
+
36
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsonresume-theme-sidebar",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Two-column sidebar resume theme with dark sidebar and light main content - ATS-friendly",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "react": "^19.2.0",
29
29
  "react-dom": "^19.2.0",
30
30
  "styled-components": "^6.1.19",
31
- "@jsonresume/core": "0.1.0"
31
+ "@jsonresume/core": "0.3.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "vitest": "^1.6.0",