Skip to content

Commit 8f974a2

Browse files
fix: pulled in DEVELOPMENT.md updates for building
1 parent 30ea110 commit 8f974a2

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

src/steps/writing/creation/dotGitHub/createDevelopment.test.ts

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,17 @@ describe("createDevelopment", () => {
6060
6161
## Building
6262
63-
Run [TypeScript](https://typescriptlang.org) locally to type check and build source files from \`src/\` into output files in \`lib/\`:
63+
Run [**tsup**](https://tsup.egoist.dev) locally to build source files from \`src/\` into output files in \`lib/\`:
6464
6565
\`\`\`shell
66-
pnpm build --watch
66+
pnpm build
6767
\`\`\`
6868
69-
You should also see suggestions from TypeScript in your editor.
69+
Add \`--watch\` to run the builder in a watch mode that continuously cleans and recreates \`lib/\` as you save files:
70+
71+
\`\`\`shell
72+
pnpm build --watch
73+
\`\`\`
7074
7175
## Formatting
7276
@@ -167,13 +171,17 @@ describe("createDevelopment", () => {
167171
168172
## Building
169173
170-
Run [TypeScript](https://typescriptlang.org) locally to type check and build source files from \`src/\` into output files in \`lib/\`:
174+
Run [**tsup**](https://tsup.egoist.dev) locally to build source files from \`src/\` into output files in \`lib/\`:
171175
172176
\`\`\`shell
173-
pnpm build --watch
177+
pnpm build
174178
\`\`\`
175179
176-
You should also see suggestions from TypeScript in your editor.
180+
Add \`--watch\` to run the builder in a watch mode that continuously cleans and recreates \`lib/\` as you save files:
181+
182+
\`\`\`shell
183+
pnpm build --watch
184+
\`\`\`
177185
178186
## Formatting
179187

src/steps/writing/creation/dotGitHub/createDevelopment.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ pnpm install
2929
3030
## Building
3131
32-
Run [TypeScript](https://typescriptlang.org) locally to type check and build source files from \`src/\` into output files in \`lib/\`:
32+
Run [**tsup**](https://tsup.egoist.dev) locally to build source files from \`src/\` into output files in \`lib/\`:
3333
3434
\`\`\`shell
35-
pnpm build --watch
35+
pnpm build
3636
\`\`\`
3737
38-
You should also see suggestions from TypeScript in your editor.
38+
Add \`--watch\` to run the builder in a watch mode that continuously cleans and recreates \`lib/\` as you save files:
39+
40+
\`\`\`shell
41+
pnpm build --watch
42+
\`\`\`
3943
4044
## Formatting
4145

0 commit comments

Comments
 (0)