@remotion/preload 4.0.176 → 4.0.178

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.
Files changed (2) hide show
  1. package/README.md +18 -7
  2. package/package.json +6 -11
package/README.md CHANGED
@@ -1,7 +1,18 @@
1
- This package contains functions for preloading assets in the browser.
2
-
3
- Documentation: https://remotion.dev/docs/preload
4
-
5
- ## License
6
-
7
- This module is excluded from the normal Remotion licensing terms and licensed under the MIT License.
1
+ # @remotion/preload
2
+
3
+ Preloads assets for use in Remotion
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/preload.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/preload?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/preload --save-exact
11
+ ```
12
+
13
+ When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
14
+ Remove the `^` character from the version number to use the exact version.
15
+
16
+ ## Usage
17
+
18
+ See the [documentation](https://www.remotion.dev/docs/preload) for more information.
package/package.json CHANGED
@@ -1,25 +1,19 @@
1
1
  {
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/preload"
4
+ },
2
5
  "name": "@remotion/preload",
3
- "version": "4.0.176",
4
- "description": "Utility functions for preloading assets in HTML5",
6
+ "version": "4.0.178",
7
+ "description": "Preloads assets for use in Remotion",
5
8
  "main": "dist/index.js",
6
9
  "types": "dist/index.d.ts",
7
10
  "sideEffects": false,
8
11
  "author": "Jonny Burger",
9
12
  "contributors": [],
10
13
  "license": "MIT",
11
- "repository": {
12
- "url": "https://github.com/remotion-dev/remotion"
13
- },
14
14
  "bugs": {
15
15
  "url": "https://github.com/remotion-dev/remotion/issues"
16
16
  },
17
- "devDependencies": {
18
- "@jonny/eslint-config": "3.0.281",
19
- "eslint": "8.56.0",
20
- "prettier": "3.2.5",
21
- "prettier-plugin-organize-imports": "3.2.4"
22
- },
23
17
  "keywords": [
24
18
  "remotion",
25
19
  "preload",
@@ -29,6 +23,7 @@
29
23
  "publishConfig": {
30
24
  "access": "public"
31
25
  },
26
+ "homepage": "https://www.remotion.dev/docs/preload",
32
27
  "scripts": {
33
28
  "formatting": "prettier src --check",
34
29
  "lint": "eslint src --ext ts,tsx"