You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## PR Checklist
- [x] Addresses an existing open issue: fixes#884
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken
## Overview
Enhances `promptForMode` to give different options based on the current
directory:
* If it's empty, offer to `create` a new repository in it or a child
directory
* If it's a Git directory, offer to `initialize` or `migrate`
* If it's not a Git directory, runs `create` for a new repository in a
child directory
In doing so, adds an optional `--directory` that defaults to the
repository's name.
Also cleans up `getPrefillOrPromptedOption` a bit. Instead of allowing
an `existingValue` parameter, calls to `getPrefillOrPromptedOption` are
just put in the right-hand-side of a `??`.
Copy file name to clipboardexpand all lines: docs/Options.md
+1
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ The setup scripts also allow for optional overrides of the following inputs whos
54
54
55
55
-`--access`_(`"public" | "restricted"`)_: Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with (by default, `"public"`)
56
56
-`--author`_(`string`)_: Username on npm to publish packages under (by default, an existing npm author, or the currently logged in npm user, or `owner.toLowerCase()`)
57
+
-`--directory`_(`string`)_: Directory to create the repository in (by default, the same name as the repository)
57
58
-`--email`_(`string`)_: Email address to be listed as the point of contact in docs and packages (e.g. `[email protected]`)
58
59
- Optionally, `--email-github`_(`string`)_ and/or `--email-npm`_(`string`)_ may be provided to use different emails in `.md` files and `package.json`, respectively
59
60
-`--funding`_(`string`)_: GitHub organization or username to mention in `funding.yml` (by default, `owner`)
0 commit comments