vovk-cli 0.0.1-draft.26 → 0.0.1-draft.28
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.
|
@@ -21,10 +21,10 @@ export default async function updateDependenciesWithoutInstalling({ log, dir, de
|
|
|
21
21
|
await fs.writeFile(packageJsonPath, JSON.stringify(packageJson, null, 2));
|
|
22
22
|
log.info('Added dependencies to package.json:');
|
|
23
23
|
for (const dependency of dependencyNames) {
|
|
24
|
-
log.raw.
|
|
24
|
+
log.raw.info(` - ${chalk.cyan(dependency)}`);
|
|
25
25
|
}
|
|
26
26
|
log.info('Added devDependencies to package.json:');
|
|
27
27
|
for (const dependency of devDependencyNames) {
|
|
28
|
-
log.raw.
|
|
28
|
+
log.raw.info(` - ${chalk.cyan(dependency)}`);
|
|
29
29
|
}
|
|
30
30
|
}
|