@dkothule/md2pdf 1.0.3 → 1.0.4

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.
@@ -56,9 +56,11 @@ confirm_install() {
56
56
  echo "Detected OS: $OS"
57
57
  printf "Continue? [y/N] "
58
58
  local response
59
+ local normalized_response
59
60
  read -r response
61
+ normalized_response="$(printf '%s' "$response" | tr '[:upper:]' '[:lower:]')"
60
62
 
61
- case "${response,,}" in
63
+ case "$normalized_response" in
62
64
  y|yes)
63
65
  ;;
64
66
  *)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dkothule/md2pdf",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Markdown to PDF converter with high-resolution Mermaid diagram rendering",
5
5
  "author": "Deepak Kothule",
6
6
  "license": "MIT",
@@ -52,6 +52,6 @@
52
52
  "postinstall": "echo \"Mermaid CLI installed\""
53
53
  },
54
54
  "dependencies": {
55
- "@mermaid-js/mermaid-cli": "10.9.1"
55
+ "@mermaid-js/mermaid-cli": "11.12.0"
56
56
  }
57
57
  }