linkedin-resume 0.2.0 → 0.3.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.
- package/README.md +8 -8
- package/dist/linkedin-resume.cjs +329076 -401
- package/package.json +1 -8
- package/resume.schema.json +36 -0
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ linkedin-resume --render
|
|
|
32
32
|
## Usage
|
|
33
33
|
|
|
34
34
|
```
|
|
35
|
-
Usage: linkedin-resume [options] [command]
|
|
35
|
+
Usage: linkedin-resume [options] [command] [outputFilepath]
|
|
36
36
|
|
|
37
37
|
A CLI tool to generate a LinkedIn resume in PDF format.
|
|
38
38
|
|
|
@@ -43,7 +43,7 @@ Options:
|
|
|
43
43
|
-V, --version output the version number
|
|
44
44
|
--debug enable debug output
|
|
45
45
|
--render skip scraping, only render
|
|
46
|
-
--headless
|
|
46
|
+
--no-headless show scraping browser window
|
|
47
47
|
--keep-open keep browser open after scraping
|
|
48
48
|
-h, --help display help for command
|
|
49
49
|
|
|
@@ -54,11 +54,11 @@ Commands:
|
|
|
54
54
|
### Examples
|
|
55
55
|
|
|
56
56
|
```sh
|
|
57
|
-
# Scrape and generate
|
|
57
|
+
# Scrape and generate in headless mode (default)
|
|
58
58
|
linkedin-resume
|
|
59
59
|
|
|
60
|
-
#
|
|
61
|
-
linkedin-resume --headless
|
|
60
|
+
# Show the browser window during scraping
|
|
61
|
+
linkedin-resume --no-headless
|
|
62
62
|
|
|
63
63
|
# Skip scraping, re-render from previously scraped data
|
|
64
64
|
linkedin-resume --render
|
|
@@ -112,11 +112,11 @@ linkedin-resume config
|
|
|
112
112
|
"ignore": {
|
|
113
113
|
// Set to true to hide the entire section, or an array to hide specific entries
|
|
114
114
|
"work": [{ "name": "Company Inc.", "position": "Intern" }],
|
|
115
|
-
"education":
|
|
115
|
+
"education": true,
|
|
116
116
|
"projects": [{ "name": "Old Project" }],
|
|
117
117
|
"skills": [{ "name": "Microsoft Word" }],
|
|
118
|
-
"languages":
|
|
119
|
-
"recommendations":
|
|
118
|
+
"languages": true,
|
|
119
|
+
"recommendations": true,
|
|
120
120
|
},
|
|
121
121
|
}
|
|
122
122
|
```
|