Skip to content

Commit

Permalink
chore: temporarily release stable tags for V6 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Mar 21, 2019
1 parent 190743a commit be1cf7b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ const publisher = new Listr([
task: async (ctx) => {
return new Listr(await Promise.all(ctx.dirsToPublish.map(async (dir) => {
const { name, version } = await fs.readJson(path.resolve(dir, 'package.json'));
const isBeta = version.includes('beta');
// TODO: Re-enable this once V6 stable is released
// const isBeta = version.includes('beta');
const isBeta = false;
return {
title: `Publishing: ${`${name}@${version}`.cyan} (beta=${isBeta ? 'true'.green : 'red'.red})`,
task: async () => {
Expand Down

0 comments on commit be1cf7b

Please sign in to comment.