aws-lambda-devkit 0.1.0 → 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.
package/README.md CHANGED
@@ -1,13 +1,16 @@
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
  |---|------|
7
+ | **Repository** | [github.com/asimsheikh12/lambda-devkit](https://github.com/asimsheikh12/lambda-devkit) |
7
8
  | **npm package** | [`aws-lambda-devkit`](https://www.npmjs.com/package/aws-lambda-devkit) |
8
9
  | **CLI command** | `lamkit` |
9
10
  | **Config file** | `lamkit.config.js` (also `.mjs`, `.cjs`, `.ts`) |
10
11
 
12
+ ![CI](https://github.com/asimsheikh12/lambda-devkit/actions/workflows/ci.yml/badge.svg)
13
+
11
14
  Install as a dev dependency. Complements SAM, CDK, and SST; does not deploy infrastructure.
12
15
 
13
16
  ---
package/docs/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Lambda DevKit documentation
2
2
 
3
- Guides for **[Lambda DevKit](https://www.npmjs.com/package/aws-lambda-devkit)** — npm package **`aws-lambda-devkit`**, CLI **`lamkit`**.
3
+ Guides for **[Lambda DevKit](https://github.com/asimsheikh12/lambda-devkit)** — npm package **`aws-lambda-devkit`**, CLI **`lamkit`**.
4
4
 
5
5
  Complete walkthroughs for integrating the toolkit into your Node.js Lambda project. All examples use generic names (`worker`, `WORKER_QUEUE_URL`, etc.) — copy them and replace with your own paths and env vars.
6
6
 
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "aws-lambda-devkit",
3
- "version": "0.1.0",
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
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/asimsheikh12/lambda-devkit.git"
9
+ },
10
+ "homepage": "https://github.com/asimsheikh12/lambda-devkit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/asimsheikh12/lambda-devkit/issues"
13
+ },
6
14
  "type": "module",
7
15
  "engines": {
8
16
  "node": ">=20"
@@ -33,7 +41,7 @@
33
41
  "build": "rm -rf dist && tsc -p tsconfig.build.json",
34
42
  "typecheck": "tsc -p tsconfig.json --noEmit",
35
43
  "lint": "tsc -p tsconfig.json --noEmit",
36
- "test": "npm run build && node --test tests/**/*.test.js",
44
+ "test": "npm run build && node scripts/run-tests.mjs",
37
45
  "pack:check": "npm run build && node scripts/pack-check.mjs",
38
46
  "publish:dry-run": "bash scripts/publish-dry-run.sh",
39
47
  "prepublishOnly": "npm run build"