diff --git a/package.json b/package.json index d5a51fa..d24fc03 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "prettier:fix": "prettier --write '**/*.{json,yaml,md,ts,tsx,js,jsx}'", "markdownlint": "markdownlint '**/*.md' '#.changeset' '#**/CHANGELOG.md'", "markdownlint:fix": "markdownlint --fix '**/*.md' '#.changeset' '#**/CHANGELOG.md'", - "test": "turbo run test", - "test:watch": "turbo run test:watch", + "test": "turbo test", + "test:watch": "turbo test:watch", "release": "changeset publish" }, "lint-staged": { diff --git a/turbo.json b/turbo.json index 20db253..196d7a1 100644 --- a/turbo.json +++ b/turbo.json @@ -1,8 +1,8 @@ { "$schema": "https://turborepo.org/schema.json", "pipeline": { - "test": {"cache": false}, - "test:watch": {"cache": false}, - "build": {"cache": false, "dependsOn": ["^build"]} + "build": {"cache": false, "dependsOn": ["^build"], "outputs": ["dist/**"]}, + "test": {"cache": false, "dependsOn": ["build"]}, + "test:watch": {"cache": false, "dependsOn": ["build"]} } }