File tree Expand file tree Collapse file tree 2 files changed +21
-9
lines changed
src/steps/writing/creation/dotGitHub Expand file tree Collapse file tree 2 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,17 @@ describe("createDevelopment", () => {
60
60
61
61
## Building
62
62
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/\`:
64
64
65
65
\`\`\`shell
66
- pnpm build --watch
66
+ pnpm build
67
67
\`\`\`
68
68
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
+ \`\`\`
70
74
71
75
## Formatting
72
76
@@ -167,13 +171,17 @@ describe("createDevelopment", () => {
167
171
168
172
## Building
169
173
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/\`:
171
175
172
176
\`\`\`shell
173
- pnpm build --watch
177
+ pnpm build
174
178
\`\`\`
175
179
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
+ \`\`\`
177
185
178
186
## Formatting
179
187
Original file line number Diff line number Diff line change @@ -29,13 +29,17 @@ pnpm install
29
29
30
30
## Building
31
31
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/\`:
33
33
34
34
\`\`\`shell
35
- pnpm build --watch
35
+ pnpm build
36
36
\`\`\`
37
37
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
+ \`\`\`
39
43
40
44
## Formatting
41
45
You can’t perform that action at this time.
0 commit comments