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
Copy file name to clipboardexpand all lines: docs/Options.md
+1
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ The setup scripts also allow for optional overrides of the following inputs whos
61
61
- This can be specified any number of times, like `--keywords apple --keywords "banana cherry"`
62
62
-`--logo`_(`string`)_: Local image file in the repository to display near the top of the README.md as a logo
63
63
-`--logo-alt`_(`string`)_: If `--logo` is provided or detected from an existing README.md, alt text that describes the image will be prompted for if not provided
64
+
-`--preserve-generated-from`_(`boolean`)_: Whether to keep the GitHub repository _generated from_ notice (by default, `false`)
64
65
65
66
For example, customizing the ownership and users associated with a new repository:
`README.md:> 💙 This package is based on [@JoshuaKGoldberg](https://github.com/JoshuaKGoldberg)'s [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).`,
33
+
`README.md:> 💙 This package was templated with [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).`,
it("creates the second repository when the prompt is 'different', the first repository does not exist, and the second repository does not exist",async()=>{
<!-- You can remove this notice if you don't want it 🙂 no worries! -->
35
35
36
-
> 💙 This package is based on [@JoshuaKGoldberg](https://github.com/JoshuaKGoldberg)'s [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).
36
+
> 💙 This package was templated with [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).
37
37
",
38
38
],
39
39
]
40
40
`);
41
41
});
42
42
43
-
it("doesn't adds a notice when the file contains it already",async()=>{
44
-
mockReadFileSafe.mockResolvedValue(
45
-
"<!-- You can remove this notice if you don't want it 🙂 no worries! -->",
46
-
);
43
+
it("doesn't add a notice when the file contains it already",async()=>{
44
+
mockReadFileSafe.mockResolvedValue(`
45
+
<!-- You can remove this notice if you don't want it 🙂 no worries! -->
46
+
47
+
> 💙 This package was templated using [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).
it("doesn't add a notice when the file contains an older version of it already",async()=>{
56
+
mockReadFileSafe.mockResolvedValue(`
57
+
💙 This package is based on [@JoshuaKGoldberg](https://github.com/JoshuaKGoldberg)'s [create-typescript-app](https://github.com/JoshuaKGoldberg/create-typescript-app).
0 commit comments