Skip to content
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

chore: remove yarn.lock file #247

Merged
merged 1 commit into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Function Builder detection is a very new feature with only simple detection logi
**We recommend installing locally** rather than globally:

```bash
yarn add netlify-lambda
npm install netlify-lambda
```

This will ensure your build scripts don't assume a global install which is better for your CI/CD (for example with Netlify's buildbot).
Expand All @@ -51,7 +51,7 @@ If you don't have a [`netlify.toml`](https://www.netlify.com/docs/netlify-toml-r
```toml
# example netlify.toml
[build]
command = "yarn build"
command = "npm run build"
functions = "lambda" # netlify-lambda reads this
publish = "build"
```
Expand Down
Loading