From 6789277fd62215f13e8a35e5cc21277a22e2cd86 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Sat, 29 Jan 2022 08:54:43 -0800 Subject: [PATCH] update turbo config --- package.json | 35 ++--------------------------------- turbo.json | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 33 deletions(-) create mode 100644 turbo.json diff --git a/package.json b/package.json index a7997a7f9..002e8cf12 100644 --- a/package.json +++ b/package.json @@ -18,38 +18,6 @@ "lint": "eslint \"packages/**/*.ts\"", "format": "prettier -w ." }, - "turbo": { - "baseBranch": "origin/main", - "pipeline": { - "build": { - "dependsOn": [ - "^build" - ], - "outputs": [ - "**/dist/**", - "!**/vendor/**" - ] - }, - "dev": { - "cache": false - }, - "test": { - "outputs": [] - }, - "test:templates": { - "outputs": [] - }, - "benchmark": { - "dependsOn": [ - "^build" - ], - "outputs": [] - }, - "lint": { - "outputs": [] - } - } - }, "workspaces": [ "compiled/*", "packages/markdown/*", @@ -89,5 +57,6 @@ }, "engines": { "node": "^14.15.0 || >=16.0.0" - } + }, + "packageManager": "yarn@1.22.5" } diff --git a/turbo.json b/turbo.json new file mode 100644 index 000000000..552e5c0b9 --- /dev/null +++ b/turbo.json @@ -0,0 +1,32 @@ +{ + "baseBranch": "origin/main", + "pipeline": { + "build": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "**/dist/**", + "!**/vendor/**" + ] + }, + "dev": { + "cache": false + }, + "test": { + "outputs": [] + }, + "test:templates": { + "outputs": [] + }, + "benchmark": { + "dependsOn": [ + "^build" + ], + "outputs": [] + }, + "lint": { + "outputs": [] + } + } +}