@vyriy/handler 0.9.1 → 0.9.3
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/AGENTS.md +4 -0
- package/package.json +6 -6
package/AGENTS.md
CHANGED
|
@@ -85,6 +85,8 @@ Documentation must move with code. Do not finish a package change while docs des
|
|
|
85
85
|
- Keep `doc.mdx` aligned with the README and package title when packages are added, renamed, or reorganized.
|
|
86
86
|
- Add or update JSDoc for public exports when behavior, parameters, return values, errors, side effects, or usage expectations need explanation.
|
|
87
87
|
- For component packages, include visual documentation, stories, or examples for supported states, variants, and interaction states.
|
|
88
|
+
- Keep reusable components as dumb as practical: push data shaping, stateful orchestration, and demo-specific logic into the entry point or owning composition layer.
|
|
89
|
+
- Store demo data in stories instead of embedding it in reusable component source.
|
|
88
90
|
- Avoid broad architecture essays in package READMEs; keep architectural direction in root-level docs unless it is necessary to use the package.
|
|
89
91
|
|
|
90
92
|
## Tests Are Required
|
|
@@ -133,6 +135,8 @@ yarn prettier --check <changed files or package>
|
|
|
133
135
|
yarn jest <changed tests or package> --runInBand
|
|
134
136
|
```
|
|
135
137
|
|
|
138
|
+
Run ESLint after YAML/YML changes too, for example `yarn eslint <changed.yml>`, because the repo ESLint setup validates YAML files as well.
|
|
139
|
+
|
|
136
140
|
Also run `yarn build:dist` for package export, manifest, build-shape, or generated-dist behavior changes. After larger package or library changes, run the full Jest suite with coverage and prefer building the affected library/package as an additional confidence check.
|
|
137
141
|
|
|
138
142
|
If a required validation command cannot be run, state why and report the remaining risk.
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vyriy/handler",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Composable AWS Lambda handler chains and wrappers for Vyriy projects",
|
|
5
5
|
"homepage": "https://vyriy.dev/docs/handler/",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@types/aws-lambda": "^8.10.162",
|
|
9
|
-
"@vyriy/chaos": "0.9.
|
|
10
|
-
"@vyriy/config": "0.9.
|
|
11
|
-
"@vyriy/logger": "0.9.
|
|
12
|
-
"@vyriy/smoke": "0.9.
|
|
13
|
-
"@vyriy/timeout": "0.9.
|
|
9
|
+
"@vyriy/chaos": "0.9.3",
|
|
10
|
+
"@vyriy/config": "0.9.3",
|
|
11
|
+
"@vyriy/logger": "0.9.3",
|
|
12
|
+
"@vyriy/smoke": "0.9.3",
|
|
13
|
+
"@vyriy/timeout": "0.9.3"
|
|
14
14
|
},
|
|
15
15
|
"agents": "./AGENTS.md",
|
|
16
16
|
"license": "MIT",
|