From 681cc7a80b9b7c977b12093f5504d57eff44e461 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 19 Oct 2022 17:59:42 -0400 Subject: [PATCH] chore: root package configurations and commands --- package.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea027287a0..fc216fd712 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,23 @@ { "private": true, "description": "Ionic mono-repo root package.json, used mainly to execute build scripts. This package is not published to npm.", + "scripts": { + "build": "turbo run build", + "test": "turbo run test", + "lint": "turbo run lint", + "dev": "turbo run dev" + }, "devDependencies": { "lerna": "^5.5.2", - "semver": "^5.5.0" + "semver": "^5.5.0", + "turbo": "^1.5.6" }, "engines": { "node": ">= 15" - } + }, + "workspaces": [ + "packages/*", + "core", + "angular" + ] }