From 2769a5ccb880d84ce59431f4e308ee5736589172 Mon Sep 17 00:00:00 2001 From: Keeley Hammond Date: Tue, 1 Nov 2022 16:25:05 -0700 Subject: [PATCH] build: change isBeta back to beta value --- tools/publish.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/publish.js b/tools/publish.js index 32a0d142ee..fdfb112c6f 100644 --- a/tools/publish.js +++ b/tools/publish.js @@ -54,9 +54,7 @@ const publisher = new Listr([ await Promise.all( ctx.dirsToPublish.map(async (dir) => { const { name, version } = await fs.readJson(path.resolve(dir, 'package.json')); - // TODO: Re-enable this once V6 stable is released - // const isBeta = version.includes('beta'); - const isBeta = false; + const isBeta = version.includes('beta'); return { title: `Publishing: ${chalk.cyan(`${name}@${version}`)} (beta=${isBeta ? chalk.green('true') : chalk.red('false')})`, task: async () => {