slackhive 0.1.9 → 0.1.10
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.
- package/dist/commands/init.js +2 -2
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -57,7 +57,7 @@ async function init(opts) {
|
|
|
57
57
|
console.log(chalk_1.default.bold.hex('#D97757')(' [2/4]') + chalk_1.default.bold(' Getting SlackHive'));
|
|
58
58
|
console.log('');
|
|
59
59
|
if ((0, fs_1.existsSync)(dir)) {
|
|
60
|
-
console.log(chalk_1.default.yellow(`
|
|
60
|
+
console.log(chalk_1.default.yellow(` ↳ Directory ${opts.dir} already exists — using existing`));
|
|
61
61
|
}
|
|
62
62
|
else {
|
|
63
63
|
const spinner = (0, ora_1.default)(' Cloning repository...').start();
|
|
@@ -167,7 +167,7 @@ async function init(opts) {
|
|
|
167
167
|
console.log(chalk_1.default.green(' ✓') + ' .env patched');
|
|
168
168
|
}
|
|
169
169
|
else {
|
|
170
|
-
console.log(chalk_1.default.yellow('
|
|
170
|
+
console.log(chalk_1.default.yellow(' ↳ .env already exists — skipping configuration'));
|
|
171
171
|
}
|
|
172
172
|
console.log('');
|
|
173
173
|
}
|