Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remotion

Package Overview
Dependencies
Maintainers
1
Versions
979
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remotion - npm Package Compare versions

Comparing version 1.0.0-y.100 to 1.0.0-y.101

3

dist/import-asset.d.ts

@@ -1,2 +0,3 @@

export declare const importAsset: (id: string) => any;
/// <reference types="node" />
export declare const importAsset: ((id: string) => undefined) | NodeRequire;
//# sourceMappingURL=import-asset.d.ts.map

@@ -8,10 +8,6 @@ "use strict";

exports.importAsset = void 0;
const importAsset = (id) => {
if (process.release.name === 'node') {
return undefined;
}
// eslint-disable-next-line import/no-dynamic-require
return require(id);
};
exports.importAsset = importAsset;
exports.importAsset = typeof process !== 'undefined' && process.release.name === 'node'
? // eslint-disable-next-line @typescript-eslint/no-unused-vars
(id) => undefined
: require;
//# sourceMappingURL=import-asset.js.map
{
"name": "remotion",
"version": "1.0.0-y.100",
"version": "1.0.0-y.101",
"description": "Render videos in React",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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