lassiecoder 1.0.9 → 1.0.11
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/bin/index.js +4 -8
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -47,7 +47,7 @@ const questions = [
|
|
|
47
47
|
name: `Send me an ${chalk.green.bold("email")}?`,
|
|
48
48
|
value: () => {
|
|
49
49
|
setTimeout(() => {
|
|
50
|
-
open(
|
|
50
|
+
open("mailto:sharmapriyanka84510@gmail.com");
|
|
51
51
|
}, 2000);
|
|
52
52
|
console.log(`\n${chalk.green.bold("Done")}, your email client should ${chalk.yellow.bold("open soon")}. \nI'll keep an eye out for your message! ${chalk.bold("👀")}\n`);
|
|
53
53
|
}
|
|
@@ -58,7 +58,7 @@ const questions = [
|
|
|
58
58
|
loader.start();
|
|
59
59
|
axios({
|
|
60
60
|
method: 'get',
|
|
61
|
-
url:
|
|
61
|
+
url: "https://rb.gy/2venms",
|
|
62
62
|
responseType: 'stream'
|
|
63
63
|
})
|
|
64
64
|
.then(function (response) {
|
|
@@ -67,7 +67,7 @@ const questions = [
|
|
|
67
67
|
response.data.pipe(writer);
|
|
68
68
|
|
|
69
69
|
writer.on('finish', () => {
|
|
70
|
-
console.log('\nResume downloaded successfully to desktop 📂 ✅\n');
|
|
70
|
+
console.log('\n\nResume downloaded successfully to desktop 📂 ✅\n');
|
|
71
71
|
loader.stop();
|
|
72
72
|
setTimeout(() => {
|
|
73
73
|
open(path.join(desktopDir, 'lassiecoder-resume.pdf'));
|
|
@@ -88,7 +88,7 @@ const questions = [
|
|
|
88
88
|
name: `Schedule a ${chalk.redBright.bold("Meeting")}?`,
|
|
89
89
|
value: () => {
|
|
90
90
|
setTimeout(() => {
|
|
91
|
-
open(
|
|
91
|
+
open("https://rb.gy/6hb965")
|
|
92
92
|
}, 2000);
|
|
93
93
|
console.log(chalk.hex("#4CAF50")(`\nI'm available on ${chalk.yellow("Fridays from 6:00 PM to 6:15 PM")} for a connection. When scheduling a meeting, please include the ${chalk.yellow("subject")} of our discussion. \nLooking forward to meeting you at the scheduled time! 🗓️\n \n`));
|
|
94
94
|
}
|
|
@@ -150,8 +150,4 @@ const output =
|
|
|
150
150
|
// Display the formatted output in a box and prompt the user with the defined questions then execute the action based on the user's choice
|
|
151
151
|
console.log(chalk.white(boxen(output, options)));
|
|
152
152
|
|
|
153
|
-
console.log(process.env.MAIL_TO,
|
|
154
|
-
process.env.GOOGLE_DRIVE_URL,
|
|
155
|
-
process.env.CALENDLY)
|
|
156
|
-
|
|
157
153
|
prompt(questions).then(answer => answer.action());
|