Skip to content

Commit 8a09d20

Browse files
feat: added warning to CLIs (#674)
## PR Checklist - [x] Addresses an existing open issue: fixes #666 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Adds the warning as described in the issue.
1 parent fe7e707 commit 8a09d20

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: src/shared/runOrRestore.ts

+12
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@ export async function runOrRestore({
3131
);
3232
console.log();
3333

34+
console.log(
35+
chalk.yellow(
36+
"⚠️ This template is early stage, opinionated, and not endorsed by the TypeScript team. ⚠️",
37+
),
38+
);
39+
console.log(
40+
chalk.yellow(
41+
"⚠️ If any tooling it sets displeases you, you can always remove that portion manually. ⚠️",
42+
),
43+
);
44+
console.log();
45+
3446
let skipRestore = false;
3547

3648
try {

0 commit comments

Comments
 (0)