diff --git a/installer/package.json b/installer/package.json index a8d2a1a..6106273 100644 --- a/installer/package.json +++ b/installer/package.json @@ -1,6 +1,6 @@ { "name": "tsdev-installer", - "version": "0.0.11", + "version": "0.0.12", "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 652099f..6ed3719 100644 --- a/internal/commands/create.go +++ b/internal/commands/create.go @@ -211,6 +211,8 @@ func downloadTemplate(dirName string) { switch projectConfig.Template { case types.BasicTemplate: utils.DownloadArchive("https://tsdev.vercel.app/templates/basic.zip", dirName) + case types.ExpressTemplate: + utils.DownloadArchive("https://tsdev.vercel.app/templates/express.zip", dirName) case types.ReactTemplate: utils.DownloadArchive("https://tsdev.vercel.app/templates/vite.zip", dirName) case types.NextTemplate: