Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,52 @@
import type { LogLevel } from '@remotion/renderer';
import type { BundlingState, CopyingState } from '@remotion/studio-server';
import type { GitSource } from '@remotion/studio-shared';
export declare const bundleOnCliOrTakeServeUrl: ({ fullPath, remotionRoot, publicDir, onProgress, indentOutput, logLevel, onDirectoryCreated, quietProgress, quietFlag, outDir, gitSource, bufferStateDelayInMilliseconds, maxTimelineTracks, publicPath, audioLatencyHint, experimentalClientSideRenderingEnabled, askAIEnabled, keyboardShortcutsEnabled, }: {
fullPath: string;
remotionRoot: string;
publicDir: string | null;
onProgress: (params: {
bundling: BundlingState;
copying: CopyingState;
}) => void;
indentOutput: boolean;
logLevel: LogLevel;
onDirectoryCreated: (path: string) => void;
quietProgress: boolean;
quietFlag: boolean;
outDir: string | null;
gitSource: GitSource | null;
bufferStateDelayInMilliseconds: number | null;
maxTimelineTracks: number | null;
publicPath: string | null;
audioLatencyHint: AudioContextLatencyCategory | null;
experimentalClientSideRenderingEnabled: boolean;
askAIEnabled: boolean;
keyboardShortcutsEnabled: boolean;
}) => Promise<{
urlOrBundle: string;
cleanup: () => void;
}>;
export declare const bundleOnCli: ({ fullPath, remotionRoot, publicDir, onProgressCallback, indent, logLevel, onDirectoryCreated, quietProgress, quietFlag, outDir, gitSource, maxTimelineTracks, bufferStateDelayInMilliseconds, publicPath, audioLatencyHint, experimentalClientSideRenderingEnabled, askAIEnabled, keyboardShortcutsEnabled, }: {
fullPath: string;
remotionRoot: string;
publicDir: string | null;
onProgressCallback: (params: {
bundling: BundlingState;
copying: CopyingState;
}) => void;
indent: boolean;
logLevel: LogLevel;
onDirectoryCreated: (path: string) => void;
quietProgress: boolean;
quietFlag: boolean;
outDir: string | null;
gitSource: GitSource | null;
maxTimelineTracks: number | null;
bufferStateDelayInMilliseconds: number | null;
publicPath: string | null;
audioLatencyHint: AudioContextLatencyCategory | null;
experimentalClientSideRenderingEnabled: boolean;
keyboardShortcutsEnabled: boolean;
askAIEnabled: boolean;
}) => Promise<string>;