@remotion/preload 4.0.226 → 4.0.227
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/dist/preload-asset.js +1 -0
- package/eslint.config.mjs +7 -0
- package/package.json +7 -2
package/dist/preload-asset.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.preloadAsset = exports.isIosSafari = void 0;
|
|
4
|
+
/* eslint-disable no-console */
|
|
4
5
|
const resolve_redirect_1 = require("./resolve-redirect");
|
|
5
6
|
const typesAllowed = ['video', 'audio', 'image', 'font'];
|
|
6
7
|
const isIosSafari = () => {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/preload"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/preload",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.227",
|
|
7
7
|
"description": "Preloads assets for use in Remotion",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -23,9 +23,14 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"eslint": "9.14.0",
|
|
28
|
+
"@remotion/eslint-config-internal": "4.0.227"
|
|
29
|
+
},
|
|
26
30
|
"homepage": "https://www.remotion.dev/docs/preload",
|
|
27
31
|
"scripts": {
|
|
28
32
|
"formatting": "prettier src --check",
|
|
29
|
-
"lint": "eslint src
|
|
33
|
+
"lint": "eslint src",
|
|
34
|
+
"make": "tsc -d"
|
|
30
35
|
}
|
|
31
36
|
}
|