Skip to content

Commit c68de2b

Browse files
committed
chore: standardize author name format in README.md and package.json
1 parent 438f0a4 commit c68de2b

File tree

4 files changed

+15
-22
lines changed

4 files changed

+15
-22
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ Starter template for building and publishing typed Node.js libraries to npm usin
8282

8383
Option A — Use as template (recommended):
8484

85-
1) Click “Use this template” on GitHub to create your repo.
86-
2) Clone your new repo and install dependencies:
85+
1. Click “Use this template” on GitHub to create your repo.
86+
2. Clone your new repo and install dependencies:
8787

8888
```bash
8989
git clone https://github.com/<your-username>/<your-repo>.git
@@ -159,17 +159,17 @@ GitHub Actions are included:
159159

160160
## Publishing
161161

162-
1) Ensure you are logged in: `npm login`.
163-
2) Update `package.json` metadata and ensure `files` includes what you want to publish.
164-
3) Bump version: `npm version patch|minor|major`.
165-
4) Publish: `npm publish`.
162+
1. Ensure you are logged in: `npm login`.
163+
2. Update `package.json` metadata and ensure `files` includes what you want to publish.
164+
3. Bump version: `npm version patch|minor|major`.
165+
4. Publish: `npm publish`.
166166

167167
Alternatively, create a GitHub Release and let the publish workflow handle it (requires `NPM_TOKEN`).
168168

169169
## 🤝 Contributing
170170

171171
Contributions, issues, and feature requests are welcome. Check the issues page:
172-
https://github.com/hebertcisco/ts-npm-package-boilerplate/issues
172+
<https://github.com/hebertcisco/ts-npm-package-boilerplate/issues>
173173

174174
## Show your support
175175

@@ -183,7 +183,6 @@ Or buy me a coffee 🙌🏾
183183

184184
## 📝 License
185185

186-
Copyright © 2025 [Hebert F Barros](https://github.com/hebertcisco).
186+
Copyright © 2025 [@hebertcisco](https://github.com/hebertcisco).
187187

188188
This project is [MIT](LICENSE) licensed.
189-

SECURITY.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Thank you for helping keep this project and its users safe.
66

77
This repository is a boilerplate. For this template itself, only the latest published version is actively supported with security updates. If you use this repository as a starting point for your own package, define and maintain a policy that fits your needs.
88

9-
| Version | Supported |
10-
| --------------- | ------------------ |
11-
| Latest release | :white_check_mark: |
12-
| Older releases | :grey_question: Best-effort only |
9+
| Version | Supported |
10+
| -------------- | -------------------------------- |
11+
| Latest release | :white_check_mark: |
12+
| Older releases | :grey_question: Best-effort only |
1313

1414
## Reporting a vulnerability
1515

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "lib/index.d.ts",
77
"scripts": {
88
"build": "tsc",
9-
"format": "prettier --write \"src/**/*.(js|ts)\"",
9+
"format": "npx prettier --write ./**/*.{js,jsx,ts,tsx,md,json}",
1010
"lint": "eslint src --ext .js,.ts",
1111
"lint:fix": "eslint src --fix --ext .js,.ts",
1212
"test": "jest --config jest.config.js",
@@ -26,7 +26,7 @@
2626
"npm",
2727
"module"
2828
],
29-
"author": "Hebert Cisco",
29+
"author": "hebertcisco",
3030
"private": false,
3131
"publishConfig": {
3232
"access": "public"

renovate.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base",
5-
":dependencyDashboard",
6-
":semanticCommits",
7-
"group:monorepos",
8-
"group:linters"
9-
],
3+
"extends": ["config:base", ":dependencyDashboard", ":semanticCommits", "group:monorepos", "group:linters"],
104
"labels": ["dependencies"],
115
"timezone": "America/Sao_Paulo",
126
"baseBranches": ["develop"],

0 commit comments

Comments
 (0)