Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use parenthesis for development your-name-here script #1868

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading