aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio B <kandinsky454@protonmail.ch>2019-01-10 18:11:23 +0800
committerGitHub <noreply@github.com>2019-01-10 18:11:23 +0800
commit420333e3c35252639bca7a987029d65ad8322290 (patch)
tree87981f577292e430ec61562ec52fb83d8c01337e
parent03248244ff8a7d8f276a86262f1b53e8dc9d5675 (diff)
downloaddexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar.gz
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar.bz2
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar.lz
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar.xz
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.tar.zst
dexon-sol-tools-420333e3c35252639bca7a987029d65ad8322290.zip
Update packages/monorepo-scripts/src/test_installation.ts
Co-Authored-By: LogvinovLeon <logvinov.leon@gmail.com>
-rw-r--r--packages/monorepo-scripts/src/test_installation.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/test_installation.ts b/packages/monorepo-scripts/src/test_installation.ts
index 59647b836..822f48967 100644
--- a/packages/monorepo-scripts/src/test_installation.ts
+++ b/packages/monorepo-scripts/src/test_installation.ts
@@ -45,7 +45,7 @@ function logIfDefined(x: any): void {
const IS_LOCAL_PUBLISH = process.env.IS_LOCAL_PUBLISH === 'true';
const registry = IS_LOCAL_PUBLISH ? 'http://localhost:4873/' : 'https://registry.npmjs.org/';
const monorepoRootPath = path.join(__dirname, '../../..');
- // We sort error messages according to package topology so that we can
+ // We sort error messages according to package topology so that we can see
// them in a more intuitive order. E.g. if package A has an error and
// package B imports it, the tests for both package A and package B will
// fail. But package B only fails because of an error in package A.