@callstack/repack-dev-server 6.0.0-canary-20250729145326 → 6.0.0-canary-20250821134328

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.
@@ -32,6 +32,8 @@ async function compilerPlugin(instance, { delegate }) {
32
32
  status: 'Bundling with Re.Pack',
33
33
  }));
34
34
  };
35
+ // immediately send 1% progress
36
+ setImmediate(() => sendProgress({ completed: 1, total: 100 }));
35
37
  try {
36
38
  const asset = await delegate.compiler.getAsset(filepath, platform, sendProgress);
37
39
  const mimeType = delegate.compiler.getMimeType(filepath, platform, asset);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@callstack/repack-dev-server",
3
3
  "description": "A bundler-agnostic development server for React Native applications as part of @callstack/repack.",
4
4
  "license": "MIT",
5
- "version": "6.0.0-canary-20250729145326",
5
+ "version": "6.0.0-canary-20250821134328",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
@@ -46,7 +46,7 @@
46
46
  "ws": "^8.18.1"
47
47
  },
48
48
  "devDependencies": {
49
- "@react-native/dev-middleware": "^0.80.0",
49
+ "@react-native/dev-middleware": "^0.81.0",
50
50
  "@types/babel__code-frame": "^7.0.6",
51
51
  "@types/node": "^20",
52
52
  "@types/ws": "^8.18.0",