From fd9e1e28f97556a972ba12bc9610cdfa5f1744a8 Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Fri, 8 Nov 2019 16:08:39 -0500 Subject: [PATCH] chore: use yarn workspaces --- lerna.json | 1 + package.json | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index 9dbdf6b4fa7..61167092163 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,7 @@ { "lerna": "3.13.4", "npmClient": "yarn", + "useWorkspaces": true, "packages": [ "benchmark/*", "packages/*", diff --git a/package.json b/package.json index fa81f068915..d56fe7a0d81 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "opentelemetry-base", + "private": true, "version": "0.1.1", "description": "OpenTelemetry is a distributed tracing and stats collection framework.", "main": "build/src/index.js", @@ -48,5 +49,9 @@ "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } - } + }, + "workspaces": [ + "packages/*", + "packages/opentelemetry-plugin-postgres/*" + ] }