@rnx-kit/metro-plugin-cyclic-dependencies-detector
v2.0.0
Published
Cyclic dependencies detector for Metro
Downloads
74,899
Keywords
Readme
@rnx-kit/metro-plugin-cyclic-dependencies-detector
@rnx-kit/metro-plugin-cyclic-dependencies-detector
detects cyclic import
chains that may cause issues in your bundle.
Usage
Import and add the plugin to MetroSerializer
in your metro.config.js
, and
optionally configure it to your liking:
const { makeMetroConfig } = require("@rnx-kit/metro-config");
+const {
+ CyclicDependencies,
+} = require("@rnx-kit/metro-plugin-cyclic-dependencies-detector");
+const { MetroSerializer } = require("@rnx-kit/metro-serializer");
module.exports = makeMetroConfig({
serializer: {
+ customSerializer: MetroSerializer([
+ CyclicDependencies({
+ includeNodeModules: false,
+ linesOfContext: 1,
+ throwOnError: true,
+ }),
+ ]),
},
});
Options
| Key | Type | Default | Description |
| :----------------- | :------ | :------ | :-------------------------------------------- |
| includeNodeModules | boolean | false
| Whether to scan node_modules
. |
| linesOfContext | number | 1 | Number of extra modules to print for context. |
| throwOnError | boolean | true
| Whether to throw when cycles are detected. |