Skip to content

Commit

Permalink
fix: use parenthesis for development your-name-here script (#1868)
Browse files Browse the repository at this point in the history
## PR Checklist

- [x] Addresses an existing open issue: fixes #1841
- [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

💖
  • Loading branch information
JoshuaKGoldberg authored Jan 15, 2025
1 parent 91cb22b commit a15277b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):

```shell
git clone https://github.com/ < your-name-here > /create-typescript-app
git clone https://github.com/(your-name-here)/create-typescript-app
cd create-typescript-app
pnpm install
```
Expand Down
8 changes: 4 additions & 4 deletions src/next/blocks/blockDevelopmentDocs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("blockDevelopmentDocs", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand All @@ -45,7 +45,7 @@ describe("blockDevelopmentDocs", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down Expand Up @@ -110,7 +110,7 @@ describe("blockDevelopmentDocs", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down Expand Up @@ -166,7 +166,7 @@ describe("blockDevelopmentDocs", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down
2 changes: 1 addition & 1 deletion src/next/blocks/blockDevelopmentDocs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const blockDevelopmentDocs = base.createBlock({
`After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):`,
``,
`\`\`\`shell`,
`git clone https://github.com/<your-name-here>/${options.repository}`,
`git clone https://github.com/(your-name-here)/${options.repository}`,
`cd ${options.repository}`,
`pnpm install`,
`\`\`\``,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe("createDevelopment", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down Expand Up @@ -168,7 +168,7 @@ describe("createDevelopment", () => {
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down Expand Up @@ -293,7 +293,7 @@ Def 456.
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/test-repository
git clone https://github.com/(your-name-here)/test-repository
cd test-repository
pnpm install
\`\`\`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ ${
After [forking the repo from GitHub](https://help.github.com/articles/fork-a-repo) and [installing pnpm](https://pnpm.io/installation):
\`\`\`shell
git clone https://github.com/<your-name-here>/${options.repository}
git clone https://github.com/(your-name-here)/${options.repository}
cd ${options.repository}
pnpm install
\`\`\`
Expand Down

0 comments on commit a15277b

Please sign in to comment.