Skip to content

Commit 3cc3b01

Browse files
committed
docs(create-cli): fix CLI options in README examples
1 parent 28ccfcb commit 3cc3b01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/create-cli/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ npm init @code-pushup/cli
4848
Skip prompts and enable specific plugins:
4949

5050
```bash
51-
npm init @code-pushup/cli -y --plugins=eslint,coverage
51+
npm init @code-pushup/cli -- -y --plugins=eslint,coverage
5252
```
5353

5454
Set up a monorepo with GitHub CI integration:
5555

5656
```bash
57-
npm init @code-pushup/cli --mode=monorepo --ci=github
57+
npm init @code-pushup/cli -- --mode=monorepo --ci=github
5858
```
5959

6060
Preview the generated config without writing:
6161

6262
```bash
63-
npm init @code-pushup/cli -y --dry-run
63+
npm init @code-pushup/cli -- -y --dry-run
6464
```

0 commit comments

Comments
 (0)