aws-lambda-devkit 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Lambda DevKit
2
2
 
3
- **Test AWS Lambda handlers on your laptop** — same `handler` export, realistic events, CloudWatch-style logs. Optional real SQS/SNS against a dev account.
3
+ **Test AWS Lambda handlers loacally** — same `handler` export, realistic events, CloudWatch-style logs. Optional real SQS/SNS against a dev account.
4
4
 
5
5
  | | Name |
6
6
  |---|------|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-lambda-devkit",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local AWS Lambda development toolkit (npm: aws-lambda-devkit, CLI: lamkit) — invoke handlers locally with AWS-shaped events",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "build": "rm -rf dist && tsc -p tsconfig.build.json",
42
42
  "typecheck": "tsc -p tsconfig.json --noEmit",
43
43
  "lint": "tsc -p tsconfig.json --noEmit",
44
- "test": "npm run build && node --test tests/**/*.test.js",
44
+ "test": "npm run build && node scripts/run-tests.mjs",
45
45
  "pack:check": "npm run build && node scripts/pack-check.mjs",
46
46
  "publish:dry-run": "bash scripts/publish-dry-run.sh",
47
47
  "prepublishOnly": "npm run build"