@walkeros/server-source-aws 3.0.0 → 3.0.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/CHANGELOG.md +14 -0
- package/dist/walkerOS.json +4 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @walkeros/server-source-aws
|
|
2
2
|
|
|
3
|
+
## 3.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @walkeros/core@3.0.2
|
|
8
|
+
|
|
9
|
+
## 3.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 86c81d1: Add default export to server-transformer-fingerprint and exports
|
|
14
|
+
metadata to multi-service packages for bundler named import support
|
|
15
|
+
- @walkeros/core@3.0.1
|
|
16
|
+
|
|
3
17
|
## 3.0.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/walkerOS.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$meta": {
|
|
3
3
|
"package": "@walkeros/server-source-aws",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"type": "source",
|
|
6
6
|
"platform": "server",
|
|
7
|
+
"exports": {
|
|
8
|
+
"sourceLambda": "AWS Lambda event source"
|
|
9
|
+
},
|
|
7
10
|
"docs": "https://www.walkeros.io/docs/sources/server/aws",
|
|
8
11
|
"source": "https://github.com/elbwalker/walkerOS/tree/main/packages/server/sources/aws/src"
|
|
9
12
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/server-source-aws",
|
|
3
3
|
"description": "AWS server sources for walkerOS (Lambda, API Gateway, Function URLs)",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"update": "npx npm-check-updates -u && npm update"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@walkeros/core": "^3.0.
|
|
24
|
+
"@walkeros/core": "^3.0.2"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@types/aws-lambda": "^8.10.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/aws-lambda": "^8.10.159",
|
|
31
|
-
"@walkeros/collector": "^3.0.
|
|
31
|
+
"@walkeros/collector": "^3.0.2"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"url": "git+https://github.com/elbwalker/walkerOS.git",
|
|
@@ -42,7 +42,10 @@
|
|
|
42
42
|
"walkerOS": {
|
|
43
43
|
"type": "source",
|
|
44
44
|
"platform": "server",
|
|
45
|
-
"docs": "https://www.walkeros.io/docs/sources/server/aws"
|
|
45
|
+
"docs": "https://www.walkeros.io/docs/sources/server/aws",
|
|
46
|
+
"exports": {
|
|
47
|
+
"sourceLambda": "AWS Lambda event source"
|
|
48
|
+
}
|
|
46
49
|
},
|
|
47
50
|
"keywords": [
|
|
48
51
|
"walkerOS",
|