Skip to content

Commit 2c4dee6

Browse files
committed
docs: rename project to package on workflow example
1 parent 1296aab commit 2c4dee6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/workflow.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ import * as p from '@clack/prompts';
2929
if (results.install === true) {
3030
return p.workflow().step('package', () =>
3131
p.select({
32-
message: 'Pick a project manager:',
32+
message: 'Pick a package manager:',
33+
initialValue: 'pnpm',
3334
options: [
3435
{
3536
label: 'npm',

packages/prompts/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ const results = await p
225225
if (results.install === true) {
226226
return p.workflow().step('package', () =>
227227
p.select({
228-
message: 'Pick a project manager:',
228+
message: 'Pick a package manager:',
229+
initialValue: 'pnpm',
229230
options: [
230231
{
231232
label: 'npm',

0 commit comments

Comments
 (0)