ic-mops 0.39.1 → 0.39.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,15 +11,16 @@ export async function installLocal(pkg: string, pkgPath = '', {verbose = false,
11
11
  return false;
12
12
  }
13
13
 
14
- let logUpdate = createLogUpdate(process.stdout, {showCursor: true});
14
+ if (!silent) {
15
+ let logUpdate = createLogUpdate(process.stdout, {showCursor: true});
16
+ logUpdate(`Local dependency ${pkg} = "${pkgPath}"`);
15
17
 
16
- logUpdate(`Local dependency ${pkg} = "${pkgPath}"`);
17
-
18
- if (verbose) {
19
- silent || logUpdate.done();
20
- }
21
- else {
22
- logUpdate.clear();
18
+ if (verbose) {
19
+ silent || logUpdate.done();
20
+ }
21
+ else {
22
+ logUpdate.clear();
23
+ }
23
24
  }
24
25
 
25
26
  // install dependencies
@@ -9,13 +9,15 @@ export async function installLocal(pkg, pkgPath = '', { verbose = false, silent
9
9
  if (!checkConfigFile()) {
10
10
  return false;
11
11
  }
12
- let logUpdate = createLogUpdate(process.stdout, { showCursor: true });
13
- logUpdate(`Local dependency ${pkg} = "${pkgPath}"`);
14
- if (verbose) {
15
- silent || logUpdate.done();
16
- }
17
- else {
18
- logUpdate.clear();
12
+ if (!silent) {
13
+ let logUpdate = createLogUpdate(process.stdout, { showCursor: true });
14
+ logUpdate(`Local dependency ${pkg} = "${pkgPath}"`);
15
+ if (verbose) {
16
+ silent || logUpdate.done();
17
+ }
18
+ else {
19
+ logUpdate.clear();
20
+ }
19
21
  }
20
22
  // install dependencies
21
23
  let ok = true;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.39.1",
3
+ "version": "0.39.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "dist/bin/mops.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.39.1",
3
+ "version": "0.39.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "dist/bin/mops.js",