From a606109519d9f834d34a2356deb6723f543a0caa Mon Sep 17 00:00:00 2001 From: Yun Feng Date: Fri, 2 Jun 2023 19:25:49 +1000 Subject: [PATCH] fix turbo dev command errors (#1229) * fix turbo dev command errors * Create forty-elephants-attack.md --------- Co-authored-by: Justin Halsall --- .changeset/forty-elephants-attack.md | 2 ++ turbo.json | 9 +++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changeset/forty-elephants-attack.md diff --git a/.changeset/forty-elephants-attack.md b/.changeset/forty-elephants-attack.md new file mode 100644 index 00000000..a845151c --- /dev/null +++ b/.changeset/forty-elephants-attack.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/turbo.json b/turbo.json index 3908cac7..c14def86 100644 --- a/turbo.json +++ b/turbo.json @@ -7,8 +7,13 @@ "outputs": ["lib/**", "es/**", "dist/**", "typings/**"] }, "test": {}, - "test:watch": {}, - "dev": {}, + "test:watch": { + "persistent": true + }, + "dev": { + "dependsOn": ["^prepublish"], + "persistent": true + }, "lint": {}, "check-types": {} }