blank-lambda-bot
blank-lambda-bot copied to clipboard
a blank skeleton for making a textfile-driven Twitterbot with AWS Lambda
The problem has to do with the "dist" directory. Error output: npm ERR! enoent ENOENT: no such file or directory, open '/Users/timbray/dev/atbot/blank-lambda-bot/dist/botfiles' npm ERR! enoent ENOENT: no such file or...
Turns out this is actually literally the only change needed!
[package.json#L32](https://github.com/emckean/blank-lambda-bot/blob/8361478451667b8caefb8596ae53ad11824753cc/package.json#L32) ``` js "botfiles": "file:///Users/emckean/Code/blank-lambda-bot/botfiles", ``` It's hardcoded to your local repo path, is it necessary? It causes `npm install` to fail before we get to run `npm install ./botfiles...