Skip to content

Commit d5d8d40

Browse files
feat: replace parsePackageAuthor with npm package (#904)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #789 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview #789 parse-author dependency was installed and the parse method was used to replace split and trim logic on the string containing author's name and email
1 parent 2ea9d87 commit d5d8d40

File tree

3 files changed

+37
-7
lines changed

3 files changed

+37
-7
lines changed

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"lazy-value": "^3.0.0",
5454
"npm-user": "^5.0.1",
5555
"octokit": "^3.1.0",
56+
"parse-author": "^2.0.0",
5657
"prettier": "^3.0.2",
5758
"replace-in-file": "^7.0.1",
5859
"title-case": "^4.0.0",
@@ -66,6 +67,7 @@
6667
"@types/git-url-parse": "^9.0.1",
6768
"@types/js-yaml": "^4.0.5",
6869
"@types/node": "^20.5.6",
70+
"@types/parse-author": "^2.0.1",
6971
"@types/prettier": "^2.7.3",
7072
"@typescript-eslint/eslint-plugin": "^6.5.0",
7173
"@typescript-eslint/parser": "^6.5.0",

pnpm-lock.yaml

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/shared/options/createOptionDefaults/parsePackageAuthor.ts

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1+
import parse from "parse-author";
2+
13
import { PartialPackageData } from "../../types.js";
24

35
export function parsePackageAuthor(packageData: PartialPackageData) {
4-
const [packageAuthor, packageEmail] =
5-
typeof packageData.author === "string"
6-
? [
7-
packageData.author.split("<")[0].trim(),
8-
packageData.author.split(/<|>/)[1]?.trim(),
9-
]
10-
: [packageData.author?.name, packageData.author?.email];
6+
let packageAuthor: string | undefined;
7+
let packageEmail: string | undefined;
8+
9+
if (typeof packageData.author === "string") {
10+
const parsedAuthor = parse(packageData.author);
11+
packageAuthor = parsedAuthor.name;
12+
packageEmail = parsedAuthor.email;
13+
} else if (packageData.author) {
14+
packageAuthor = packageData.author.name;
15+
packageEmail = packageData.author.email;
16+
}
1117

1218
return {
1319
author: packageAuthor,

0 commit comments

Comments
 (0)