diff options
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | packages/monorepo-scripts/src/publish.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 31b669bc7..2b1f04802 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "lerna:run": "lerna run", "lerna:rebuild": "lerna run clean; lerna run build;", "lerna:publish": - "yarn install; yarn lerna:rebuild; node ./packages/monorepo-scripts/lib/publish.js" + "yarn install; yarn lerna:rebuild; IS_DRY_RUN=false node ./packages/monorepo-scripts/lib/publish.js" }, "config": { "mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic" diff --git a/packages/monorepo-scripts/src/publish.ts b/packages/monorepo-scripts/src/publish.ts index 1821dad28..2f18f2a9c 100644 --- a/packages/monorepo-scripts/src/publish.ts +++ b/packages/monorepo-scripts/src/publish.ts @@ -13,7 +13,7 @@ import { constants } from './constants'; import { Changelog, Changes, SemVerIndex, UpdatedPackage } from './types'; import { utils } from './utils'; -const IS_DRY_RUN = false; +const IS_DRY_RUN = process.env.IS_DRY_RUN === 'false'; const TODAYS_TIMESTAMP = moment().unix(); const LERNA_EXECUTABLE = './node_modules/lerna/bin/lerna.js'; const semverNameToIndex: { [semver: string]: number } = { |