浏览代码

revision: template creation message (#3320)

Miles Murgaw 6 月之前
父节点
当前提交
01c5716128
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      packages/cli/src/cli/create.rs

+ 1 - 2
packages/cli/src/cli/create.rs

@@ -210,8 +210,7 @@ pub(crate) fn post_create(path: &Path) -> Result<()> {
     let mut file = std::fs::File::create(readme_path)?;
     file.write_all(new_readme.as_bytes())?;
 
-    tracing::info!(dx_src = ?TraceSrc::Dev, "Generated project at {}", path.display());
-    tracing::info!(dx_src = ?TraceSrc::Dev, "`cd` to your project and run `dx serve` to start developing. Build cool things! ✌️");
+    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());
 
     Ok(())
 }