We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
botfiles
package.json#L32
"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 --save.
npm install
npm install ./botfiles --save
The text was updated successfully, but these errors were encountered:
@eladnava: It's not immediately clear from the instructions, but under Source Data in the readme is the command to fix this:
npm install --save ./YOURPATH/botfiles should resolve this and update your package.json to have that set to "file:botfiles"
"file:botfiles"
Sorry, something went wrong.
OK cool, but the README does state cloning the repo first, then running npm install without running the command you mentioned first: https://github.com/emckean/blank-lambda-bot#instructions
@eladnava Yep, not disputing that, just sharing what worked for me in the hopes that it'd help you!
No branches or pull requests
package.json#L32
It's hardcoded to your local repo path, is it necessary? It causes
npm install
to fail before we get to runnpm install ./botfiles --save
.The text was updated successfully, but these errors were encountered: