@flightdev/adapter-aws 0.0.6 → 0.0.7
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 +4 -4
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @flightdev/adapter-aws
|
|
2
2
|
|
|
3
3
|
AWS Lambda deployment adapter for Flight Framework. Deploy to Lambda with API Gateway or Lambda URLs.
|
|
4
4
|
|
|
@@ -17,7 +17,7 @@ AWS Lambda deployment adapter for Flight Framework. Deploy to Lambda with API Ga
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install @
|
|
20
|
+
npm install @flightdev/adapter-aws
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
---
|
|
@@ -26,8 +26,8 @@ npm install @flight-framework/adapter-aws
|
|
|
26
26
|
|
|
27
27
|
```typescript
|
|
28
28
|
// flight.config.ts
|
|
29
|
-
import { defineConfig } from '@
|
|
30
|
-
import aws from '@
|
|
29
|
+
import { defineConfig } from '@flightdev/core';
|
|
30
|
+
import aws from '@flightdev/adapter-aws';
|
|
31
31
|
|
|
32
32
|
export default defineConfig({
|
|
33
33
|
adapter: aws(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flightdev/adapter-aws",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "AWS adapter for Flight Framework - deploy to Lambda, Amplify, or API Gateway",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flight",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@flightdev/core": "0.6.
|
|
27
|
+
"@flightdev/core": "0.6.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^22.0.0",
|
|
@@ -32,6 +32,12 @@
|
|
|
32
32
|
"tsup": "^8.0.0",
|
|
33
33
|
"typescript": "^5.7.0"
|
|
34
34
|
},
|
|
35
|
+
"homepage": "https://github.com/EliosLT/FlightDev",
|
|
36
|
+
"repository": {
|
|
37
|
+
"url": "https://github.com/EliosLT/FlightDev.git",
|
|
38
|
+
"directory": "packages/adapter-aws",
|
|
39
|
+
"type": "git"
|
|
40
|
+
},
|
|
35
41
|
"scripts": {
|
|
36
42
|
"build": "tsup",
|
|
37
43
|
"dev": "tsup --watch",
|