@remotion/lambda-client 4.0.285 → 4.0.286
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/.turbo/turbo-make.log +2 -2
- package/dist/esm/index.mjs +2 -2
- package/dist/get-aws-client.js +17 -7
- package/package.json +4 -4
- package/tsconfig.tsbuildinfo +1 -1
package/.turbo/turbo-make.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @remotion/lambda-client@4.0.
|
|
3
|
+
> @remotion/lambda-client@4.0.286 make /Users/jonathanburger/remotion/packages/lambda-client
|
|
4
4
|
> tsc -d && bun --env-file=../.env.bundle bundle.ts
|
|
5
5
|
|
|
6
|
-
[0m[2m[[
|
|
6
|
+
[0m[2m[[1m94.63ms[0m[2m][0m Generated.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -16897,7 +16897,7 @@ var validateFramesPerFunction = ({
|
|
|
16897
16897
|
throw new TypeError(`The framesPerLambda needs to be at least ${effectiveMinimum}, but is ${framesPerFunction}`);
|
|
16898
16898
|
}
|
|
16899
16899
|
};
|
|
16900
|
-
var VERSION = "4.0.
|
|
16900
|
+
var VERSION = "4.0.286";
|
|
16901
16901
|
var isColorSupported = () => {
|
|
16902
16902
|
const env = process.env || {};
|
|
16903
16903
|
const isForceDisabled = "NO_COLOR" in env;
|
|
@@ -17331,7 +17331,7 @@ function streamToString(stream) {
|
|
|
17331
17331
|
}
|
|
17332
17332
|
const chunks = [];
|
|
17333
17333
|
return new Promise((resolve, reject) => {
|
|
17334
|
-
stream.on("data", (chunk) => chunks.push(
|
|
17334
|
+
stream.on("data", (chunk) => chunks.push(new Uint8Array(chunk)));
|
|
17335
17335
|
stream.on("error", (err) => reject(err));
|
|
17336
17336
|
stream.on("end", () => resolve(Buffer.concat(chunks).toString("utf8")));
|
|
17337
17337
|
});
|
package/dist/get-aws-client.js
CHANGED
|
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
36
|
exports.getAwsClient = void 0;
|
|
27
37
|
const CloudWatchSDK = __importStar(require("@aws-sdk/client-cloudwatch-logs"));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda-client"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda-client",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.286",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"@types/express": "^5.0.0",
|
|
25
25
|
"express": "4.21.0",
|
|
26
26
|
"eslint": "9.19.0",
|
|
27
|
-
"next": "15.2.
|
|
27
|
+
"next": "15.2.4",
|
|
28
28
|
"@types/mime-types": "2.1.1",
|
|
29
|
-
"@remotion/serverless-client": "4.0.
|
|
30
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
29
|
+
"@remotion/serverless-client": "4.0.286",
|
|
30
|
+
"@remotion/eslint-config-internal": "4.0.286"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|