@remotion/babel-loader 4.0.177 → 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.
- package/README.md +18 -0
- package/package.json +9 -13
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @remotion/babel-loader
|
|
2
|
+
|
|
3
|
+
Babel loader for Remotion
|
|
4
|
+
|
|
5
|
+
[](https://npmcharts.com/compare/@remotion/babel-loader?minimal=true)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @remotion/babel-loader --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/legacy-babel) for more information.
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/babel-loader"
|
|
4
|
+
},
|
|
2
5
|
"name": "@remotion/babel-loader",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "
|
|
6
|
+
"version": "4.0.178",
|
|
7
|
+
"description": "Babel loader for Remotion",
|
|
5
8
|
"main": "dist/index.js",
|
|
6
9
|
"files": [
|
|
7
10
|
"dist"
|
|
8
11
|
],
|
|
9
12
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
10
13
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
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
|
},
|
|
@@ -26,16 +26,11 @@
|
|
|
26
26
|
"webpack": "5.83.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"
|
|
31
|
-
"eslint": "8.56.0",
|
|
32
|
-
"prettier": "3.2.5",
|
|
33
|
-
"prettier-plugin-organize-imports": "3.2.4",
|
|
34
|
-
"remotion": "4.0.177",
|
|
35
|
-
"@remotion/bundler": "4.0.177"
|
|
29
|
+
"@remotion/bundler": "4.0.178",
|
|
30
|
+
"remotion": "4.0.178"
|
|
36
31
|
},
|
|
37
32
|
"peerDependencies": {
|
|
38
|
-
"@remotion/bundler": "4.0.
|
|
33
|
+
"@remotion/bundler": "4.0.178"
|
|
39
34
|
},
|
|
40
35
|
"keywords": [
|
|
41
36
|
"remotion",
|
|
@@ -47,6 +42,7 @@
|
|
|
47
42
|
"publishConfig": {
|
|
48
43
|
"access": "public"
|
|
49
44
|
},
|
|
45
|
+
"homepage": "https://www.remotion.dev/docs/legacy-babel",
|
|
50
46
|
"scripts": {
|
|
51
47
|
"formatting": "prettier src --check",
|
|
52
48
|
"lint": "eslint src --ext ts,tsx"
|