-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update readme cli flag instructions
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,19 +208,26 @@ As an example, to scaffold a multi-extension project i.e. BED environment target | |
|
||
```bash | ||
$ bedframe make multi-extension-project \ | ||
--version 0.0.1 \ | ||
--browsers chrome, brave, opera, edge \ | ||
--packageManager yarn \ | ||
--browsers 'chrome, firefox, safari, brave, opera, edge' \ | ||
--version '0.0.0' \ | ||
--description 'this is my BED! there are many like it, but this one is... MINE!!!' \ | ||
--author 'joe, [email protected], https://bedframe.dev' \ | ||
--license MIT \ | ||
--private \ | ||
--type overlay \ | ||
--override newtab \ | ||
--options embedded \ | ||
--packageManager bun \ | ||
--framework react \ | ||
--language typescript \ | ||
--style tailwind \ | ||
--lintFormat \ | ||
--tests \ | ||
--git \ | ||
--gitHooks \ | ||
--tests \ | ||
--commitLint \ | ||
--changesets \ | ||
--installDeps \ | ||
--installDeps | ||
``` | ||
|
||
If any required configuration isn't passed in via `flags` the CLI will prompt you for the missing requirements. | ||
|