Skip to content

Commit 01c5716

Browse files
authored
revision: template creation message (#3320)
1 parent 0596e53 commit 01c5716

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/cli/src/cli/create.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,7 @@ pub(crate) fn post_create(path: &Path) -> Result<()> {
210210
let mut file = std::fs::File::create(readme_path)?;
211211
file.write_all(new_readme.as_bytes())?;
212212

213-
tracing::info!(dx_src = ?TraceSrc::Dev, "Generated project at {}", path.display());
214-
tracing::info!(dx_src = ?TraceSrc::Dev, "`cd` to your project and run `dx serve` to start developing. Build cool things! ✌️");
213+
tracing::info!(dx_src = ?TraceSrc::Dev, "Generated project at {}\n\n`cd` to your project and run `dx serve` to start developing.\nIf using Tailwind, make sure to run the Tailwind CLI.\nMore information is available in the generated `README.md`.\n\nBuild cool things! ✌️", path.display());
215214

216215
Ok(())
217216
}

0 commit comments

Comments
 (0)