You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes:
- Update CONTRIBUTING.md to use
> [email protected] preinstall
> (cd packages/commons && npm ci); (cd packages/logger && npm ci); (cd packages/metrics && npm ci); (cd packages/tracing && npm ci);
> @aws-lambda-powertools/[email protected] prepare
> npm run build
> @aws-lambda-powertools/[email protected] build
> tsc
added 586 packages, and audited 587 packages in 4s
84 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
> @aws-lambda-powertools/[email protected] prepare
> npm run build
> @aws-lambda-powertools/[email protected] build
> tsc
added 488 packages, and audited 489 packages in 4s
72 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
> @aws-lambda-powertools/[email protected] prepare
> npm run build
> @aws-lambda-powertools/[email protected] build
> tsc
added 822 packages, and audited 852 packages in 10s
91 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
> @aws-lambda-powertools/[email protected] prepare
> npm run build
> @aws-lambda-powertools/[email protected] build
> tsc
added 836 packages, and audited 859 packages in 8s
72 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
added 1327 packages, removed 2761 packages, changed 10 packages, and audited 1383 packages in 40s
100 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
- Add a preinstall task to install all of the sub packages
closesaws-powertools#415
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ Please read through this document before submitting any issues or pull requests
7
7
information to effectively respond to your bug report or contribution.
8
8
9
9
## Security issue notifications
10
+
10
11
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
11
12
12
13
## Reporting Bugs/Feature Requests
@@ -35,7 +36,7 @@ Contributions via pull requests are much appreciated. Before sending us a pull r
35
36
To send us a pull request, please follow these steps:
36
37
37
38
1. Fork the repository.
38
-
2. Install dependencies: `npm install`
39
+
2. Install dependencies: `npm ci`
39
40
3. Prepare utilities like commit hooks: `npm run init-environment`
40
41
4. Create a new branch to focus on the specific change you are contributing e.g. `git checkout -b improv/logger-debug-sampling`
41
42
5. Run all tests, and code baseline checks: `npm run test`
@@ -54,8 +55,9 @@ You might find useful to run both the documentation website and the API referenc
54
55
***Docs website**:
55
56
56
57
You can build and start a local docs website by running these two commands.
57
-
-`npm run docs-buildDockerImage` OR `docker build -t squidfunk/mkdocs-material ./docs/`
58
-
-`npm run docs-runLocalDocker` OR `docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material`
58
+
59
+
*`npm run docs-buildDockerImage` OR `docker build -t squidfunk/mkdocs-material ./docs/`
60
+
*`npm run docs-runLocalDocker` OR `docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material`
59
61
60
62
### Conventions
61
63
@@ -89,4 +91,4 @@ TODO
89
91
90
92
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
91
93
92
-
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
94
+
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
0 commit comments