From 1a5827e16ae0a0b2ef9f89f84c7374a2e3165dc7 Mon Sep 17 00:00:00 2001 From: Sean Barag Date: Mon, 10 Jul 2023 16:23:35 -0700 Subject: [PATCH] build: wip re-add lerna.json Lerna supports pnpm [1], and auto (for automatic publishing and github label integration) requires lerna. Luckily lerna stays almost entirely hands-off when pnpm is involved :) [1] https://lerna.js.org/docs/recipes/using-pnpm-with-lerna --- lerna.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lerna.json diff --git a/lerna.json b/lerna.json new file mode 100644 index 000000000..466c22491 --- /dev/null +++ b/lerna.json @@ -0,0 +1,8 @@ +{ + "npmClient": "pnpm", + "useWorkspaces": true, + "version": "independent", + "$schema": "node_modules/lerna/schemas/lerna-schema.json", + "useNx": false, + "registry": "https://registry.npmjs.org" +}