Releases: moroshko/react-scanner
Releases · moroshko/react-scanner
1.0.0
- Added support for
getPropValue
. See #42.
0.8.0
- Added support for
import { default as MyComponent } from "my-module"
. See #39.
0.7.0
getComponentName
gets an importType
now. See #33.
0.6.0
exclude
can be an array of strings and regexes now, e.g.: ["utils", /image/i]
.
- If no files found to scan, the program exits with exit code = 1 now.
0.5.0
- Added
getComponentName
config option.
This is a breaking change. To replicate the previous behaviour, specify: getComponentName: ({ local }) => local
.
- Added
importInfo
to component instances.
0.4.2
- Removed the usage of
Object.fromEntries
to allow Node 10.
0.4.1
- Fixed a missing
./processors/processors
.
- README fixes.
0.3.0
- Added a new
importedFrom
config option.
- Config is properly validated now.
0.2.0
- Added TypeScript support.
processReport
gets a new sortObjectKeysByValue
helper now.