New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@remotion/studio-shared

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remotion/studio-shared - npm Package Compare versions

Comparing version 4.0.267 to 4.0.268

3

dist/get-default-out-name.d.ts

@@ -1,5 +0,6 @@

export declare const getDefaultOutLocation: ({ compositionName, defaultExtension, type, }: {
export declare const getDefaultOutLocation: ({ compositionName, defaultExtension, type, compositionDefaultOutName, }: {
compositionName: string;
compositionDefaultOutName: string | null;
defaultExtension: string;
type: "asset" | "sequence";
}) => string;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDefaultOutLocation = void 0;
const getDefaultOutLocation = ({ compositionName, defaultExtension, type, }) => {
const getDefaultOutLocation = ({ compositionName, defaultExtension, type, compositionDefaultOutName, }) => {
const nameToUse = compositionDefaultOutName !== null && compositionDefaultOutName !== void 0 ? compositionDefaultOutName : compositionName;
if (type === 'sequence') {
return `out/${compositionName}`;
return `out/${nameToUse}`;
}
return `out/${compositionName}.${defaultExtension}`;
return `out/${nameToUse}.${defaultExtension}`;
};
exports.getDefaultOutLocation = getDefaultOutLocation;

@@ -6,3 +6,3 @@ {

"name": "@remotion/studio-shared",
"version": "4.0.267",
"version": "4.0.268",
"description": "Internal package for shared objects between the Studio backend and frontend",

@@ -18,8 +18,8 @@ "main": "dist",

"dependencies": {
"remotion": "4.0.267"
"remotion": "4.0.268"
},
"devDependencies": {
"eslint": "9.19.0",
"@remotion/renderer": "4.0.267",
"@remotion/eslint-config-internal": "4.0.267"
"@remotion/renderer": "4.0.268",
"@remotion/eslint-config-internal": "4.0.268"
},

@@ -26,0 +26,0 @@ "publishConfig": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc