Set IS_DRY_RUN to false

This commit is contained in:
Fabio Berger 2018-03-30 15:28:08 +02:00
parent 08a69ebd6e
commit f55a300f43

View File

@ -13,7 +13,7 @@ import { constants } from './constants';
import { Changelog, Changes, SemVerIndex, UpdatedPackage } from './types'; import { Changelog, Changes, SemVerIndex, UpdatedPackage } from './types';
import { utils } from './utils'; import { utils } from './utils';
const IS_DRY_RUN = true; const IS_DRY_RUN = false;
const TODAYS_TIMESTAMP = moment().unix(); const TODAYS_TIMESTAMP = moment().unix();
const LERNA_EXECUTABLE = './node_modules/lerna/bin/lerna.js'; const LERNA_EXECUTABLE = './node_modules/lerna/bin/lerna.js';
const semverNameToIndex: { [semver: string]: number } = { const semverNameToIndex: { [semver: string]: number } = {