presumably my resume in a programattic format... or not, since json resume didn't catch on?
* Add package.json for node dependencies
Zach DeCook 2020-03-29
parent a58e6c0 · commit 693f1c0
-rwxr-xr-xbuild.sh1
-rw-r--r--package.json6
2 files changed, 7 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 763cdd0..e9da0a6 100755
--- a/build.sh
+++ b/build.sh
@@ -1,4 +1,5 @@
#!/bin/bash
+PATH=$PATH:$(dirname $0)/node_modules/.bin
cat resume.yml |python3 -c 'import json,sys;from ruamel.yaml import YAML;yaml=YAML(); print(json.dumps(yaml.load(sys.stdin)))' > resume.fresh.json
hackmyresume convert resume.fresh.json to resume.jsr.json
hackmyresume build resume.fresh.json index.html
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..10a815f
--- /dev/null
+++ b/package.json
@@ -0,0 +1,6 @@
+{
+ "dependencies": {
+ "hackmyresume": "^1.9.0-beta",
+ "jsonresume-theme-paper": "^0.3.5"
+ }
+}