From a606f98c3c24604d7a67b219b289fd9e9bb1120d Mon Sep 17 00:00:00 2001 From: talksik Date: Sun, 12 Jun 2022 12:25:44 -0500 Subject: [PATCH] improving scripts upper level to easier running --- package.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6191f01..f80f7e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,11 @@ { - "private": true, - "name": "nirvana", - "workspaces": ["packages/*"], - "scripts": {} - } \ No newline at end of file + "private": true, + "name": "nirvana", + "workspaces": [ + "packages/*" + ], + "scripts": { + "api": "yarn workspace @nirvana/api dev", + "desktop": "yarn workspace @nirvana/desktop dev" + } +}