From 4e340eb0455f623beaa1085a42d4e32f02971c94 Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Sun, 30 Oct 2022 21:02:12 +1100 Subject: [PATCH] chore: install lerna --- lerna.json | 5 +++++ package.json | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 lerna.json create mode 100644 package.json diff --git a/lerna.json b/lerna.json new file mode 100644 index 0000000000..aebebbab22 --- /dev/null +++ b/lerna.json @@ -0,0 +1,5 @@ +{ + "$schema": "node_modules/lerna/schemas/lerna-schema.json", + "useWorkspaces": true, + "version": "0.0.0" +} diff --git a/package.json b/package.json new file mode 100644 index 0000000000..9299927d40 --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "name": "root", + "private": true, + "workspaces": [ + "packages/*" + ], + "devDependencies": { + "lerna": "^6.0.1" + } +}