@remotion/bundler 3.0.16 → 3.0.17
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/webpack-config.js +0 -6
- package/package.json +3 -5
package/dist/webpack-config.js
CHANGED
|
@@ -179,14 +179,8 @@ const webpackConfig = ({ entry, userDefinedComponent, outDir, environment, webpa
|
|
|
179
179
|
: null,
|
|
180
180
|
].filter(truthy),
|
|
181
181
|
},
|
|
182
|
-
{
|
|
183
|
-
test: /\.js$/,
|
|
184
|
-
enforce: 'pre',
|
|
185
|
-
use: [require.resolve('source-map-loader')],
|
|
186
|
-
},
|
|
187
182
|
],
|
|
188
183
|
},
|
|
189
|
-
ignoreWarnings: [/Failed to parse source map/],
|
|
190
184
|
});
|
|
191
185
|
};
|
|
192
186
|
exports.webpackConfig = webpackConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/bundler",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.17",
|
|
4
4
|
"description": "Bundler for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -26,15 +26,13 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"css-loader": "5.2.7",
|
|
28
28
|
"esbuild": "0.14.19",
|
|
29
|
-
"execa": "5.1.1",
|
|
30
29
|
"express": "4.17.1",
|
|
31
30
|
"memfs": "3.4.3",
|
|
32
31
|
"mime-types": "2.1.34",
|
|
33
32
|
"react-refresh": "0.9.0",
|
|
34
|
-
"remotion": "3.0.
|
|
33
|
+
"remotion": "3.0.17",
|
|
35
34
|
"semver": "7.3.4",
|
|
36
35
|
"source-map": "0.6.1",
|
|
37
|
-
"source-map-loader": "3.0.0",
|
|
38
36
|
"style-loader": "2.0.0",
|
|
39
37
|
"webpack": "5.72.0"
|
|
40
38
|
},
|
|
@@ -77,5 +75,5 @@
|
|
|
77
75
|
"publishConfig": {
|
|
78
76
|
"access": "public"
|
|
79
77
|
},
|
|
80
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "c973653a9ced0d8793ce0cb03ce5f837b149d865"
|
|
81
79
|
}
|