-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: fully onboard to create (#1839)
## PR Checklist - [x] Addresses an existing open issue: fixes #1824 - [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 Completely removes the non-`create` portions, including the CLI. This repo now just provides Blocks and Presets in a Template per https://create.bingo. 💝 💖
- Loading branch information
1 parent
70e243c
commit c0325c4
Showing
309 changed files
with
756 additions
and
16,363 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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/coverage* | ||
/coverage | ||
/lib | ||
/node_modules |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/.husky | ||
/coverage* | ||
/coverage | ||
/lib | ||
/pnpm-lock.yaml |
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
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 |
---|---|---|
@@ -1,4 +1,16 @@ | ||
#!/usr/bin/env node | ||
import { bin } from "../lib/bin/index.js"; | ||
import chalk from "chalk"; | ||
|
||
process.exitCode = await bin(process.argv.slice(2)); | ||
console.log( | ||
[ | ||
"create-typescript-app is now run using ", | ||
chalk.bold("create"), | ||
".\n\nRun:\n ", | ||
chalk.bold("npx create", process.argv.slice(2).join(" ")), | ||
"\n\nYou can read more on:\n https://", | ||
chalk.bold("create.bingo"), | ||
"\n\nThanks for using create-typescript-app! 🎁", | ||
].join(""), | ||
); | ||
|
||
process.exitCode = 1; |
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
Oops, something went wrong.