jsonresume-theme-engineering-leader 1.0.4 → 1.0.5

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/README.md CHANGED
@@ -4,9 +4,11 @@
4
4
 
5
5
  This is the engineering theme for [JSON Resume](http://jsonresume.org/), based off of [jsonresume-theme-engineering](https://github.com/skoenig/jsonresume-theme-engineering) and aims to implement the best practices for [engineering resumes](https://www.reddit.com/r/EngineeringResumes/wiki/index/). The original version was intended for [senior/staff level engineers](https://www.reddit.com/r/EngineeringResumes/wiki/index/#wiki_senior_engineers_and_above_.2810.2B_yoe.29) but this version is modified for CTOs/VPs/Directors.
6
6
 
7
+ It handles locations of jobs and allows for nested bullets but it renders dates exactly as provided as if they are strings.
8
+
7
9
  <p align="center">
8
10
  <kbd>
9
- <img src="https://github.com/sjw7444/jsonresume-theme-engineering-leader/blob/main/example-resume.png?raw=true" alt="Richard Hendriks Resume"/>
11
+ <img src="https://github.com/sjw7444/jsonresume-theme-engineering-leader/blob/main/examples/example-resume.png?raw=true" alt="Richard Hendriks Resume"/>
10
12
  </kbd>
11
13
  </p>
12
14
 
@@ -45,10 +47,10 @@ To export your resume, you can run the following command below. This will automa
45
47
  npm run export
46
48
  ```
47
49
 
48
- If you want to see or modify and example, this project is configured to export a resume from the `example` folder just by running vscode f5.
50
+ If you want to see or modify and example, this project is configured to export a resume from the `examples` folder just by running vscode f5.
49
51
 
50
52
  ```bash
51
- resume export --resume example-resume.json --theme . example-resume.html
53
+ resume export --resume examples/example-resume.json --theme . examples/example-resume.html
52
54
  ```
53
55
 
54
56
  ## License
@@ -61,7 +63,7 @@ This is a very small personal project but feel free to contribute and I will do
61
63
 
62
64
  ### Notes
63
65
 
64
- To make the example png, follow the steps below:
66
+ To make the example png, follow the steps below (and then rename and `-1` page extensions):
65
67
 
66
68
  1. Install `brew install poppler`
67
- 2. Run `pdftoppm -png example-resume.pdf example-resume`
69
+ 2. Run `pdftoppm -png examples/example-resume.pdf examples/example-resume`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsonresume-theme-engineering-leader",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "JSON Resume theme for Engineering leaders",
5
5
  "keywords": [
6
6
  "jsonresume",
@@ -18,8 +18,8 @@
18
18
  "license": "MIT",
19
19
  "scripts": {
20
20
  "start": "resume serve --theme .",
21
- "export-html": "resume export --resume example-resume.json --theme ./ example-resume.html",
22
- "export-pdf": "resume export --resume example-resume.json --theme ./ example-resume.pdf"
21
+ "export-html": "resume export --resume examples/example-resume.json --theme ./ examples/example-resume.html",
22
+ "export-pdf": "resume export --resume examples/example-resume.json --theme ./ examples/example-resume.pdf"
23
23
  },
24
24
  "dependencies": {
25
25
  "address-format": "0.0.3",