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
|
-
|
|
14
|
+
if (!silent) {
|
|
15
|
+
let logUpdate = createLogUpdate(process.stdout, {showCursor: true});
|
|
16
|
+
logUpdate(`Local dependency ${pkg} = "${pkgPath}"`);
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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