@curiousvlxd/linkedin-badge-renderer 0.1.11 → 0.1.13

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
@@ -8,7 +8,7 @@
8
8
  <img src="./assets/example.svg" width="400" alt="Generated badge example" />
9
9
  </p>
10
10
 
11
- CLI tool for generating LinkedIn profile badges in SVG, PNG, JPEG, or PDF format.
11
+ A CLI tool for generating LinkedIn profile badges in SVG, PNG, JPEG, or PDF format.
12
12
 
13
13
  Renders the official LinkedIn badge using Playwright and exports pixel-perfect assets for websites, resumes, and portfolios.
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curiousvlxd/linkedin-badge-renderer",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "linkedin-badge": "src/cli.mjs"
package/src/cli.mjs CHANGED
@@ -15,7 +15,7 @@ export async function runCli(argv = process.argv) {
15
15
  const theme = normTheme(args.theme);
16
16
  const size = normSize(args.size);
17
17
  const locale = normLocale(args.locale);
18
- const orientation = normOrientation(args.orientation ?? args.type);
18
+ const orientation = normOrientation(args.orientation);
19
19
  const pad = Math.max(0, toInt(args.pad, DEFAULTS.pad));
20
20
 
21
21
  const outPath = ensureExt(args.out || DEFAULTS.out, format);