Releases: jurassix/atom-javascript-refactor
Releases · jurassix/atom-javascript-refactor
v0.5.7
v0.5.6
Minor bug fix
Fixes issue when exporting non-string literal.
more info here [https://github.com/jurassix/refactoring-codemods/issues/3]
Renamed to Javascript Refactor
v0.5.4 Prepare 0.5.4 release
README updates
Updated the README again. 😽
Dependency updates and README changes
Updates to README to help users understand what this package does. This release also has dependencies updates and other chore commits.
Export Declarations now supported
Export Declaration paths are now included in codemods and refactored appropriately.
export {
default as walkPath,
} from './walkPath';
export * from './walkPath';Performance Improvements
This patch changes the way we call the Relative Transform codemod. We were serially calling this codemod on all moved files. Now we are utilizing the batch mode and calling it once with all the files that have moved.
Directory Support
Package now supports renaming Directories.