You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- \`pnpm lint:packages\` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the \`pnpm-lock.yml\` file
92
92
- \`pnpm lint:spelling\` ([cspell](https://cspell.org)): Spell checks across all source files
- \`pnpm lint:packages\` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the \`pnpm-lock.yml\` file
328
338
- \`pnpm lint:spelling\` ([cspell](https://cspell.org)): Spell checks across all source files
329
339
@@ -335,7 +345,7 @@ Def 456.
335
345
pnpm run lint --fix
336
346
\`\`\`
337
347
338
-
Note that you'll likely need to run \`pnpm build\` before \`pnpm lint\` so that lint rules which check the file system can pick up on any built files.
348
+
Note that you'll need to run \`pnpm build\` before \`pnpm lint\` so that lint rules which check the file system can pick up on any built files.
Copy file name to clipboardexpand all lines: src/steps/writing/creation/dotGitHub/createDevelopment/index.ts
+37-19
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,11 @@ Add \`--watch\` to run the builder in a watch mode that continuously cleans and
26
26
\`\`\`shell
27
27
pnpm build --watch
28
28
\`\`\``,
29
+
...(options.bin&&{
30
+
"### Built App Debugging": `This repository includes a [VS Code launch configuration](https://code.visualstudio.com/docs/editor/debugging) for debugging.
31
+
To debug a \`bin\` app, add a breakpoint to your code, then run _Debug Program_ from the VS Code Debug panel (or press F5).
32
+
VS Code will automatically run the \`build\` task in the background before running \`${options.bin}\`.`,
33
+
}),
29
34
"## Formatting": `[Prettier](https://prettier.io) is used to format code.
30
35
It should be applied automatically when you save files in VS Code or make a Git commit.
31
36
@@ -40,8 +45,7 @@ pnpm format --write
40
45
pnpm run lint --fix
41
46
\`\`\`
42
47
43
-
Note that you'll likely need to run \`pnpm build\` before \`pnpm lint\` so that lint rules which check the file system can pick up on any built files.`,
44
-
48
+
Note that you'll need to run \`pnpm build\` before \`pnpm lint\` so that lint rules which check the file system can pick up on any built files.`,
45
49
...(!options.excludeTests&&{
46
50
"## Testing": `[Vitest](https://vitest.dev) is used for tests.
`- \`pnpm lint:packages\` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the \`pnpm-lock.yml\` file`,
0 commit comments