diff --git a/.changeset/config.json b/.changeset/config.json index 18ab50bc76..deac25b724 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,5 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": ["www", "playground", "**-template"] + "ignore": ["www", "**-template"] } diff --git a/.changeset/old-tables-compare.md b/.changeset/old-tables-compare.md new file mode 100644 index 0000000000..a5562d04e4 --- /dev/null +++ b/.changeset/old-tables-compare.md @@ -0,0 +1,5 @@ +--- +"shadcn-ui": patch +--- + +update init message diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 58415283ca..70966eb39f 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -43,13 +43,6 @@ async function main() { .description("Configure your Next.js project.") .option("-y, --yes", "Skip confirmation prompt.") .action(async (options) => { - logger.warn( - "Running the following command will overwrite existing files." - ) - logger.warn( - "Make sure you have committed your changes before proceeding." - ) - logger.warn("") logger.warn( "This command assumes a Next.js project with TypeScript and Tailwind CSS." ) @@ -63,7 +56,7 @@ async function main() { type: "confirm", name: "proceed", message: - "Running this command will install dependencies and overwrite files. Proceed?", + "Running this command will install dependencies and overwrite your existing tailwind.config.js. Proceed?", initial: true, })