aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/prepublish_checks.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-25 18:33:08 +0800
committerGitHub <noreply@github.com>2018-07-25 18:33:08 +0800
commit05b35c0fdcbca7980d4195e96ec791c1c2d13398 (patch)
treea0650603ef44458500b4ecf31527776080191405 /packages/monorepo-scripts/src/prepublish_checks.ts
parentfac90c446cc3a79ffe57ae13c685e7555714cf23 (diff)
parent36b61650b3174c30b0495d0a50f1d872a4edd8d9 (diff)
downloaddexon-0x-contracts-05b35c0fdcbca7980d4195e96ec791c1c2d13398.tar.gz
dexon-0x-contracts-05b35c0fdcbca7980d4195e96ec791c1c2d13398.tar.zst
dexon-0x-contracts-05b35c0fdcbca7980d4195e96ec791c1c2d13398.zip
Merge pull request #908 from 0xProject/publish-fixes-rc
Publish Flow Fixes For RC releases
Diffstat (limited to 'packages/monorepo-scripts/src/prepublish_checks.ts')
-rw-r--r--packages/monorepo-scripts/src/prepublish_checks.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/prepublish_checks.ts b/packages/monorepo-scripts/src/prepublish_checks.ts
index 431e848ca..683c26094 100644
--- a/packages/monorepo-scripts/src/prepublish_checks.ts
+++ b/packages/monorepo-scripts/src/prepublish_checks.ts
@@ -50,7 +50,7 @@ async function checkGitTagsForNextVersionAndDeleteIfExistAsync(updatedPublicPack
async function checkCurrentVersionMatchesLatestPublishedNPMPackageAsync(
updatedPublicPackages: Package[],
): Promise<void> {
- utils.log('Check package versions against npmjs.org...');
+ utils.log('Check package versions against npm registry...');
const versionMismatches = [];
for (const pkg of updatedPublicPackages) {
const packageName = pkg.packageJson.name;