lassiecoder 1.0.8 → 1.0.9
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 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -150,4 +150,8 @@ 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
|
+
|
|
153
157
|
prompt(questions).then(answer => answer.action());
|