resuml 1.2.5 → 1.2.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 CHANGED
@@ -1,7 +1,15 @@
1
- # resuml
1
+ <h1 align="center">✨ Resuml</h1>
2
+ <p align="center"><strong>Resumes in YAML <br>Powered by Typescript & Magic</strong></p>
3
+
4
+ <p align="center">
5
+ <a href="https://www.buymeacoffee.com/leekbeds55j">
6
+ <img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" width="150" />
7
+ </a>
8
+ </p>
2
9
 
3
10
  A CLI tool for generating JSON resumes from YAML with theme support. This tool helps you maintain your resume in YAML format and convert it to various formats including JSON and HTML with different themes.
4
11
 
12
+
5
13
  ## Prerequisites
6
14
 
7
15
  - Node.js >= 20.0.0
package/dist/api.js CHANGED
@@ -261,7 +261,7 @@ __export(themeLoader_exports, {
261
261
  });
262
262
  async function installTheme(packageName) {
263
263
  try {
264
- (0, import_child_process.execSync)(`npm install ${packageName}`, {
264
+ (0, import_child_process.execFileSync)("npm", ["install", packageName], {
265
265
  stdio: ["inherit", "pipe", "pipe"],
266
266
  encoding: "utf8"
267
267
  });