@remotion/bundler 3.3.80 → 3.3.81

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/dist/copy-dir.js +2 -2
  2. package/package.json +2 -2
package/dist/copy-dir.js CHANGED
@@ -6,9 +6,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.copyDir = void 0;
7
7
  const fs_1 = __importDefault(require("fs"));
8
8
  const path_1 = __importDefault(require("path"));
9
- async function copyDir({ src, dest, onSymlinkDetected, onProgress, copied = 0, }) {
9
+ async function copyDir({ src, dest, onSymlinkDetected, onProgress, }) {
10
10
  await fs_1.default.promises.mkdir(dest, { recursive: true });
11
11
  const entries = await fs_1.default.promises.readdir(src, { withFileTypes: true });
12
+ let copied = 0;
12
13
  for (const entry of entries) {
13
14
  const srcPath = path_1.default.join(src, entry.name);
14
15
  const destPath = path_1.default.join(dest, entry.name);
@@ -18,7 +19,6 @@ async function copyDir({ src, dest, onSymlinkDetected, onProgress, copied = 0, }
18
19
  dest: destPath,
19
20
  onSymlinkDetected,
20
21
  onProgress,
21
- copied,
22
22
  });
23
23
  }
24
24
  else if (entry.isSymbolicLink()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/bundler",
3
- "version": "3.3.80",
3
+ "version": "3.3.81",
4
4
  "description": "Bundler for Remotion",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -20,7 +20,7 @@
20
20
  "css-loader": "5.2.7",
21
21
  "esbuild": "0.16.12",
22
22
  "react-refresh": "0.9.0",
23
- "remotion": "3.3.80",
23
+ "remotion": "3.3.81",
24
24
  "style-loader": "2.0.0",
25
25
  "webpack": "5.76.1"
26
26
  },