@hybridless/hybridless 0.1.40 → 0.1.41-alpha.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybridless/hybridless",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"license": "GNU GPLv3",
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/node": "^20.11.17",
|
|
16
|
-
"typescript": "^5.6.
|
|
17
|
-
"typescript-json-schema": "^0.
|
|
16
|
+
"typescript": "^5.6.3",
|
|
17
|
+
"typescript-json-schema": "^0.65.1"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@babel/core": "^7.
|
|
20
|
+
"@babel/core": "^7.26.0",
|
|
21
21
|
"@hybridless/serverless-ecs-plugin": "^0.0.53",
|
|
22
22
|
"@hybridless/serverless-plugin-log-retention": "^2.0.0",
|
|
23
23
|
"babel-loader": "^8.x.x",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"json-schema-ref-parser": "^9.0.9",
|
|
28
28
|
"json-stringify-safe": "^5.0.1",
|
|
29
29
|
"loadash": "^1.0.0",
|
|
30
|
-
"serverless-webpack": "^5.
|
|
30
|
+
"serverless-webpack": "^5.15.0",
|
|
31
31
|
"stack-trace": "0.0.10",
|
|
32
32
|
"tar-fs": "^3.0.5",
|
|
33
33
|
"uuid": "^9.0.0",
|
|
34
|
-
"webpack": "^5.
|
|
34
|
+
"webpack": "^5.96.1",
|
|
35
35
|
"webpack-node-externals": "^3.0.0"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -7,4 +7,4 @@ COPY /usr/src/app/ /usr/src/app/
|
|
|
7
7
|
WORKDIR /usr/src/app
|
|
8
8
|
|
|
9
9
|
# Run the specified command within the container.
|
|
10
|
-
ENTRYPOINT node -e "import(
|
|
10
|
+
ENTRYPOINT node -e "try {const resp = await ((await import(`$ENTRYPOINT`))['$ENTRYPOINT_FUNC'](input, context));if (resp) resolve({data: resp});} catch (e) { reject(e); }"
|
|
@@ -7,4 +7,4 @@ COPY /usr/src/app/ /usr/src/app/
|
|
|
7
7
|
WORKDIR /usr/src/app
|
|
8
8
|
|
|
9
9
|
# Run the specified command within the container.
|
|
10
|
-
ENTRYPOINT node -e "import(
|
|
10
|
+
ENTRYPOINT node -e "try {const resp = await ((await import(`$ENTRYPOINT`))['$ENTRYPOINT_FUNC'](input, context));if (resp) resolve({data: resp});} catch (e) { reject(e); }"
|