@module-federation/metro 2.1.0 → 2.2.0

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.
@@ -49,7 +49,6 @@ const unsupportedTopLevelOptions = [
49
49
  'implementation',
50
50
  'manifest',
51
51
  'dev',
52
- 'dataPrefetch',
53
52
  'virtualRuntimeEntry',
54
53
  'experiments',
55
54
  'bridge',
@@ -12,7 +12,6 @@ const unsupportedTopLevelOptions = [
12
12
  'implementation',
13
13
  'manifest',
14
14
  'dev',
15
- 'dataPrefetch',
16
15
  'virtualRuntimeEntry',
17
16
  'experiments',
18
17
  'bridge',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/metro",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "Module Federation for Metro bundler",
5
5
  "keywords": [
6
6
  "module-federation",
@@ -57,9 +57,9 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@expo/metro-runtime": "^5.0.4",
60
- "@module-federation/dts-plugin": "2.1.0",
61
- "@module-federation/sdk": "2.1.0",
62
- "@module-federation/runtime": "2.1.0"
60
+ "@module-federation/sdk": "2.2.0",
61
+ "@module-federation/runtime": "2.2.0",
62
+ "@module-federation/dts-plugin": "2.2.0"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "@babel/types": "^7.25.0",
@@ -100,6 +100,7 @@
100
100
  "build": "rslib build",
101
101
  "test": "vitest run --config vitest.config.mts",
102
102
  "test:watch": "vitest --config vitest.config.mts",
103
- "typecheck": "tsc --noEmit"
103
+ "typecheck": "tsc --noEmit",
104
+ "lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.{ts,tsx,js,jsx}\""
104
105
  }
105
106
  }