-
Notifications
You must be signed in to change notification settings - Fork 700
chore: update .nycrc, Contributing.md, and .gitignore across packages #9144
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
base: pnpm
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,5 +10,4 @@ system-test/*key.json | |
| *-lock.js* | ||
| build/ | ||
| .vscode | ||
| package-lock.json | ||
| __pycache__ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| node_modules | ||
| package-lock.json | ||
| __pycache__ | ||
| docs | ||
| .DS_Store |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| node_modules | ||
| .DS_Store | ||
| coverage | ||
| package-lock.json | ||
| .coverage | ||
| docs |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,3 @@ build | |
| node_modules | ||
| .nyc_output | ||
| .coverage/* | ||
| test/fixtures/**/package-lock.json | ||
| package-lock.json | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,12 +52,12 @@ accept your pull requests. | |
|
|
||
| 1. Install dependencies: | ||
|
|
||
| npm install | ||
| pnpm install | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It appears that References
|
||
|
|
||
| 1. Run the tests: | ||
|
|
||
| # Run unit tests. | ||
| npm test | ||
| pnpm run test | ||
|
|
||
| # Run sample integration tests. | ||
| npm run samples-test | ||
|
|
@@ -67,7 +67,7 @@ accept your pull requests. | |
|
|
||
| 1. Lint (and maybe fix) any changes: | ||
|
|
||
| npm run fix | ||
| pnpm run fix | ||
|
|
||
| [setup]: https://cloud.google.com/nodejs/docs/setup | ||
| [projects]: https://console.cloud.google.com/project | ||
|
|
||
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.
In this file (and many other
CONTRIBUTING.mdfiles across the repository), the commandnpm run samples-teston line 61 was missed during the migration fromnpmtopnpm. Please update it topnpm run samples-testfor consistency.