From 3245278aacf90e2c0c4663ad50dba41c6a1b3832 Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Mon, 20 Sep 2021 11:10:57 +0200 Subject: [PATCH] Removed @theatre/r3f from same-version build --- devEnv/deploy.mjs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/devEnv/deploy.mjs b/devEnv/deploy.mjs index d8bc8dd..f2de06e 100644 --- a/devEnv/deploy.mjs +++ b/devEnv/deploy.mjs @@ -12,7 +12,7 @@ const packagesToBuild = [ 'theatre', '@theatre/dataverse', '@theatre/react', - '@theatre/r3f', + // '@theatre/r3f', ] const packagesToPublish = [ @@ -20,7 +20,7 @@ const packagesToPublish = [ '@theatre/studio', '@theatre/dataverse', '@theatre/react', - '@theatre/r3f', + // '@theatre/r3f', ] /** @@ -33,12 +33,13 @@ const packagesWhoseVersionsShouldBump = [ 'theatre/studio', 'packages/dataverse', 'packages/react', - 'packages/r3f', + // 'packages/r3f', ] ;(async function () { // our packages will check for this env variable to make sure their // prepublish script is only called from the `$ cd /path/to/monorepo; yarn run deploy` + // @ts-ignore ignore process.env.THEATRE_IS_PUBLISHING = true // better quote function from https://github.com/google/zx/pull/167