aws-lambda-devkit 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,10 @@
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
+ [![npm version](https://img.shields.io/npm/v/aws-lambda-devkit)](https://www.npmjs.com/package/aws-lambda-devkit)
4
+ [![License: MIT](https://img.shields.io/npm/l/aws-lambda-devkit)](https://github.com/asimsheikh12/lambda-devkit/blob/main/LICENSE)
5
+ [![CI](https://github.com/asimsheikh12/lambda-devkit/actions/workflows/ci.yml/badge.svg)](https://github.com/asimsheikh12/lambda-devkit/actions/workflows/ci.yml)
6
+
7
+ **Test AWS Lambda handlers locally** — same `handler` export, realistic events, CloudWatch-style logs. Optional real SQS/SNS against a dev account.
4
8
 
5
9
  | | Name |
6
10
  |---|------|
@@ -9,8 +13,6 @@
9
13
  | **CLI command** | `lamkit` |
10
14
  | **Config file** | `lamkit.config.js` (also `.mjs`, `.cjs`, `.ts`) |
11
15
 
12
- ![CI](https://github.com/asimsheikh12/lambda-devkit/actions/workflows/ci.yml/badge.svg)
13
-
14
16
  Install as a dev dependency. Complements SAM, CDK, and SST; does not deploy infrastructure.
15
17
 
16
18
  ---
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.3",
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"