resume-cli 3.0.5 → 3.0.6
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 +5 -0
- package/build/export-resume.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,11 @@ This is the command line tool for [JSON Resume](https://jsonresume.org), the ope
|
|
|
10
10
|
|
|
11
11
|
[Read more...](https://jsonresume.org/schema/)
|
|
12
12
|
|
|
13
|
+
|
|
14
|
+
Alternatives: The Resume CLI tool works as it is so there isn't a huge amount of active development on it, try these alternatives if it doesn't work for you;
|
|
15
|
+
- [Resumed](https://github.com/rbardini/resumed)
|
|
16
|
+
|
|
17
|
+
|
|
13
18
|
# Getting Started
|
|
14
19
|
|
|
15
20
|
Install the command-line tool:
|
package/build/export-resume.js
CHANGED
|
@@ -66,7 +66,9 @@ const extractFileFormat = fileName => {
|
|
|
66
66
|
|
|
67
67
|
const getThemePkg = theme => {
|
|
68
68
|
if (theme[0] === '.') {
|
|
69
|
-
theme = path.join(process.cwd(),
|
|
69
|
+
theme = path.join(process.cwd(), 'index.js');
|
|
70
|
+
} else {
|
|
71
|
+
theme = path.join(process.cwd(), 'node_modules', theme, 'index.js');
|
|
70
72
|
}
|
|
71
73
|
|
|
72
74
|
try {
|