Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyBurger committed Feb 8, 2025
1 parent 958da25 commit bd05c4e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/it-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"@remotion/captions": "workspace:*",
"@remotion/google-fonts": "workspace:*",
"@remotion/serverless": "workspace:*",
"@remotion/serverless-client": "workspace:*",
"@remotion/studio-server": "workspace:*",
"@remotion/studio-shared": "workspace:*",
"@remotion/transitions": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {expect, test} from 'bun:test';

test('Serverless client should not contain certain things', async () => {
const resolve = Bun.resolveSync('@remotion/serverless/client', __dirname);
const resolve = Bun.resolveSync('@remotion/serverless-client', __dirname);
const out = await Bun.build({
entrypoints: [resolve],
external: ['remotion'],
external: [],
});
if (!out.success) {
throw new Error(out.logs.join('\n'));
Expand Down
2 changes: 1 addition & 1 deletion packages/serverless-client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export type {
VideoImageFormat,
X264Preset,
} from '@remotion/renderer';
export {BrowserSafeApis} from '@remotion/renderer/client';
export type {BrowserSafeApis} from '@remotion/renderer/client';
export {wrapWithErrorHandling} from '@remotion/renderer/error-handling';
export {makeStreamer, makeStreamPayloadMessage} from '@remotion/streaming';
export type {VideoConfig} from 'remotion/no-react';
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bd05c4e

Please sign in to comment.