@yeow/create-yeow 0.1.3 → 0.1.4
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/package.json
CHANGED
|
@@ -44,7 +44,7 @@ async function promptProxy(devConfig) {
|
|
|
44
44
|
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
45
45
|
const answer = await new Promise((resolve) => {
|
|
46
46
|
const hint = currentProxy ? ` (current: ${c.cyan}${currentProxy}${c.reset})` : '';
|
|
47
|
-
log(` ${c.yellow}Configure proxy to download PaperMC server JAR`);
|
|
47
|
+
console.log(` ${c.yellow}Configure proxy to download PaperMC server JAR`);
|
|
48
48
|
rl.question(` ${c.yellow}Proxy address${c.reset}${hint} [blank to skip]: `, (val) => {
|
|
49
49
|
rl.close();
|
|
50
50
|
resolve(val);
|
|
@@ -44,7 +44,7 @@ async function promptProxy(devConfig) {
|
|
|
44
44
|
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
45
45
|
const answer = await new Promise((resolve) => {
|
|
46
46
|
const hint = currentProxy ? ` (current: ${c.cyan}${currentProxy}${c.reset})` : '';
|
|
47
|
-
log(` ${c.yellow}Configure proxy to download PaperMC server JAR`);
|
|
47
|
+
console.log(` ${c.yellow}Configure proxy to download PaperMC server JAR`);
|
|
48
48
|
rl.question(` ${c.yellow}Proxy address${c.reset}${hint} [blank to skip]: `, (val) => {
|
|
49
49
|
rl.close();
|
|
50
50
|
resolve(val);
|