@remotion/bundler 4.0.38 → 4.0.40

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/bundle.js CHANGED
@@ -216,6 +216,7 @@ async function bundle(...args) {
216
216
  publicFolderExists: baseDir + '/public',
217
217
  });
218
218
  node_fs_1.default.writeFileSync(node_path_1.default.join(outDir, 'index.html'), html);
219
+ node_fs_1.default.copyFileSync(node_path_1.default.join(__dirname, '../favicon.ico'), node_path_1.default.join(outDir, 'favicon.ico'));
219
220
  return outDir;
220
221
  }
221
222
  exports.bundle = bundle;
package/favicon.ico ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/bundler",
3
- "version": "4.0.38",
3
+ "version": "4.0.40",
4
4
  "description": "Bundler for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -12,7 +12,8 @@
12
12
  },
13
13
  "files": [
14
14
  "dist",
15
- "react-shim.js"
15
+ "react-shim.js",
16
+ "favicon.ico"
16
17
  ],
17
18
  "author": "Jonny Burger <jonny@remotion.dev>",
18
19
  "license": "SEE LICENSE IN LICENSE.md",
@@ -22,7 +23,7 @@
22
23
  "react-refresh": "0.9.0",
23
24
  "style-loader": "2.0.0",
24
25
  "webpack": "5.83.1",
25
- "remotion": "4.0.38"
26
+ "remotion": "4.0.40"
26
27
  },
27
28
  "peerDependencies": {
28
29
  "react": ">=16.8.0",