@remotion/studio-server 4.0.452 → 4.0.453
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/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-server"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio-server",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.453",
|
|
7
7
|
"description": "Run a Remotion Studio with a server backend",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"@babel/parser": "7.24.1",
|
|
29
29
|
"semver": "7.5.3",
|
|
30
30
|
"prettier": "3.8.1",
|
|
31
|
-
"remotion": "4.0.
|
|
31
|
+
"remotion": "4.0.453",
|
|
32
32
|
"recast": "0.23.11",
|
|
33
|
-
"@remotion/bundler": "4.0.
|
|
34
|
-
"@remotion/renderer": "4.0.
|
|
35
|
-
"@remotion/studio-shared": "4.0.
|
|
33
|
+
"@remotion/bundler": "4.0.453",
|
|
34
|
+
"@remotion/renderer": "4.0.453",
|
|
35
|
+
"@remotion/studio-shared": "4.0.453",
|
|
36
36
|
"memfs": "3.4.3",
|
|
37
37
|
"source-map": "0.7.3",
|
|
38
38
|
"open": "^8.4.2"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"ast-types": "0.16.1",
|
|
42
42
|
"react": "19.2.3",
|
|
43
43
|
"@types/semver": "^7.3.4",
|
|
44
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
44
|
+
"@remotion/eslint-config-internal": "4.0.453",
|
|
45
45
|
"eslint": "9.19.0",
|
|
46
46
|
"@types/node": "20.12.14",
|
|
47
47
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.suppressHmrForFile = suppressHmrForFile;
|
|
4
|
-
exports.shouldSuppressHmr = shouldSuppressHmr;
|
|
5
|
-
const suppressedFiles = new Set();
|
|
6
|
-
function suppressHmrForFile(absolutePath) {
|
|
7
|
-
suppressedFiles.add(absolutePath);
|
|
8
|
-
}
|
|
9
|
-
function shouldSuppressHmr(filename) {
|
|
10
|
-
if (filename === null) {
|
|
11
|
-
return false;
|
|
12
|
-
}
|
|
13
|
-
if (suppressedFiles.has(filename)) {
|
|
14
|
-
suppressedFiles.delete(filename);
|
|
15
|
-
return true;
|
|
16
|
-
}
|
|
17
|
-
return false;
|
|
18
|
-
}
|