diff --git a/installer/package.json b/installer/package.json index eb0ef32..a8d2a1a 100644 --- a/installer/package.json +++ b/installer/package.json @@ -1,6 +1,6 @@ { "name": "tsdev-installer", - "version": "0.0.10", + "version": "0.0.11", "description": "The installer for tsdev, a better tsdx", "scripts": { "postinstall": "node dist/postinstall.js install", diff --git a/internal/commands/create.go b/internal/commands/create.go index ab9c70e..652099f 100644 --- a/internal/commands/create.go +++ b/internal/commands/create.go @@ -240,7 +240,7 @@ func gitInit(path string) error { utils.ExecWithOutput(path, "git", "init") utils.ExecWithOutput(path, "git", "add", ".") - utils.ExecWithOutput(path, "git", "commit", "-m", "Tsdev setup") + utils.ExecWithOutput(path, "git", "commit", "-m", "🚀 Tsdev setup") return nil } @@ -300,7 +300,7 @@ func HandleCreateCommand(name string) error { setupWg.Wait() - // gitInit(dirPath(name)) + gitInit(dirPath(name)) return nil }