From bf27ff066164bfb8939be0cdc6afb7ad36da5822 Mon Sep 17 00:00:00 2001 From: Guz013 <43732358+Guz013@users.noreply.github.com> Date: Thu, 20 Jul 2023 15:40:38 -0300 Subject: [PATCH] =?UTF-8?q?chore(deps):=20=F0=9F=94=97=20add=20turborepo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + package.json | 4 +++- turbo.json | 7 +++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 turbo.json diff --git a/.gitignore b/.gitignore index 77a114c..0c3d163 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules .env .env.* !.env.example +.turbo diff --git a/package.json b/package.json index 31a8de4..42bc3a7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,9 @@ "name": "eslit-monorepo", "private": true, "scripts": { - "lint": "ESLINT_USE_FLAT_CONFIG=true eslint .", + "lint": "turbo run lint", + "lint:monorepo": "ESLINT_USE_FLAT_CONFIG=true eslint .", + "test": "", "prepare": "husky install" }, "author": "", diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..d89db50 --- /dev/null +++ b/turbo.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://turbo.build/schema.json", + "pipeline": { + "lint": {}, + "test": {} + } +}