@kensio/yulin-aws-simulation 1.7.1 → 1.8.0

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "https://anthropic.com/claude-code/plugin.schema.json",
3
3
  "name": "yulin-aws-simulation",
4
- "version": "1.7.1",
5
- "description": "How to test AWS code well with the @kensio/yulin in-process simulator: using it directly instead of building a harness around it, driving tests, local dev and production from one synthesized CDK template, intercepting SDK clients, controlling simulated time, and handling what the simulator refuses.",
4
+ "version": "1.8.0",
5
+ "description": "How to test AWS code well with the @kensio/yulin in-process simulator.",
6
6
  "author": {
7
7
  "name": "Kensio Software",
8
8
  "email": "hugh@kensiosoftware.co.uk"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kensio/yulin-aws-simulation",
3
- "version": "1.7.1",
4
- "description": "How to test AWS code well with the @kensio/yulin in-process simulator: using it directly instead of building a harness around it, driving tests, local dev and production from one synthesized CDK template, intercepting SDK clients, controlling simulated time, and handling what the simulator refuses.",
3
+ "version": "1.8.0",
4
+ "description": "How to test AWS code well with the @kensio/yulin in-process simulator.",
5
5
  "keywords": [
6
6
  "aws",
7
7
  "cdk",
@@ -9,8 +9,8 @@ description: Use the @kensio/yulin in-process AWS simulator well when testing AW
9
9
  network and no AWS account. Its own docs are the authority on the API. This skill covers how to use
10
10
  it well, and that lives mostly outside the API.
11
11
 
12
- Read the package docs for anything API-shaped:
13
- [the README](https://github.com/KensioSoftware/yulin#readme), `docs/sdk/` for interception, and
12
+ Read the package docs for anything API-shaped. Start with
13
+ [the README](https://github.com/KensioSoftware/yulin#readme), then `docs/sdk/` for interception and
14
14
  `docs/services/<name>/` for each simulated service.
15
15
 
16
16
  This skill serves the `isolated-testing-style` skill, the general argument for simulation over
@@ -25,7 +25,7 @@ want that trade can go the other way knowingly.
25
25
  The most common way to go wrong with Yulin is to build something on top of it. The failure looks
26
26
  like a `TestAwsEnvironment` class, a `setupSimulatedAws()` helper returning six things, a factory
27
27
  per service, or a `beforeEach` that reassembles the world (a private framework wrapped around a tool
28
- that is already the framework.
28
+ that is already the framework).
29
29
 
30
30
  It is worth resisting, because Yulin is built to be used directly:
31
31