-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
docs(readme): update readme instructions for running app #622
Conversation
package.json
Outdated
"serverless-offline": "^11.0.1", | ||
"serverless-offline-lambda": "^1.0.6", | ||
"serverless-plugin-typescript": "^2.1.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kishore03109 double checking - all the serverless-xxx
stuff can be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, can be removed!
package-lock.json
Outdated
@@ -4,16 +4,6 @@ | |||
"lockfileVersion": 1, | |||
"requires": true, | |||
"dependencies": { | |||
"2-thenable": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to double check, are these dependencies all unused?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not entirely sure how these came to be - if they're in our deps
and we can't find a relevant import in our codebase, then i'm assuming they're unused (subpackages should specify their own deps)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed all extra dpes
package.json
Outdated
"serverless-offline": "^11.0.1", | ||
"serverless-offline-lambda": "^1.0.6", | ||
"serverless-plugin-typescript": "^2.1.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup, can be removed!
Problem
app requires more setup to run. this isn't well documented so this pr adds the required steps
Solution