do-nothing-script
Automate everything...or just use a checklist.
This script does nothing; it's an automated checklist.
Getting started
npm install --save-dev do-nothing-script npx do-nothing --file prompts.js
Strings
Return an array of strings that are used in the checklist.
// prompts.jsmoduleexports = `1. Remember to add code (git add)` `2. Remember to commit code (git commit)` `3. Remember to push code (git push)` `4. git paid`;
Expressions
You can use JavaScript expressions.
// prompts.jsmoduleexports = `1. Remember to add code (git add)` `. Remember to commit code (git commit)` `3. Remember to push code (git push)` `4. git paid `;
Functions
You can use functions that return a Promise.
// prompts.js const makeApiCall = { return ;} moduleexports = `1. Remember to add code (git add)` makeApiCall;