@yawlabs/aws-mcp 1.4.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/index.js +587 -495
- package/dist/index.js.map +7 -0
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -300,6 +300,14 @@ From 1.0 onward this package follows [Semantic Versioning](https://semver.org/sp
|
|
|
300
300
|
|
|
301
301
|
**Deprecation policy:** breaking a stable shape requires a major bump. A deprecation lands first in a minor (the old shape continues to work and the new shape becomes available alongside it), with a removal scheduled for the next major. Both the deprecation and the removal show up in `CHANGELOG.md`.
|
|
302
302
|
|
|
303
|
+
## Development
|
|
304
|
+
|
|
305
|
+
`npm test` runs both unit tests and integration tests. The integration suites
|
|
306
|
+
spawn a local `fake-aws` subprocess that stubs the AWS CLI -- no AWS credentials
|
|
307
|
+
or network access required. The only tests that need real AWS credentials are
|
|
308
|
+
the live tests gated behind the `AWS_MCP_LIVE_TESTS` environment variable, which
|
|
309
|
+
are skipped in a standard `npm test` run.
|
|
310
|
+
|
|
303
311
|
## License
|
|
304
312
|
|
|
305
313
|
MIT
|