@module-federation/metro-plugin-rnef 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.
- package/README.md +2 -2
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -15,8 +15,8 @@ npm install --save-dev @module-federation/metro-plugin-rnef
|
|
|
15
15
|
3. Add the plugin to your RNEF configuration (typically in `rnef.config.mjs`):
|
|
16
16
|
|
|
17
17
|
```typescript
|
|
18
|
-
import { pluginMetro } from
|
|
19
|
-
import moduleFederation from
|
|
18
|
+
import { pluginMetro } from '@rnef/plugin-metro';
|
|
19
|
+
import moduleFederation from '@module-federation/metro-plugin-rnef';
|
|
20
20
|
|
|
21
21
|
/** @type {import('@rnef/config').Config} */
|
|
22
22
|
export default {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/metro-plugin-rnef",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Metro Module Federation plugin for React Native Enterprise Framework (RNEF)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rnef",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@rnef/tools": "^0.7.18",
|
|
38
|
-
"@module-federation/metro": "2.
|
|
38
|
+
"@module-federation/metro": "2.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@rnef/config": "^0.7.18",
|
|
@@ -45,10 +45,11 @@
|
|
|
45
45
|
"@typescript-eslint/parser": "8.54.0",
|
|
46
46
|
"@types/node": "^20.0.0",
|
|
47
47
|
"typescript": "^5.8.3",
|
|
48
|
-
"@module-federation/metro": "2.
|
|
48
|
+
"@module-federation/metro": "2.2.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "rslib build",
|
|
52
|
-
"typecheck": "tsc --noEmit"
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.{js,ts}\""
|
|
53
54
|
}
|
|
54
55
|
}
|