Skip to content

Releases: jurassix/atom-javascript-refactor

v0.5.7

02 Mar 04:49

Choose a tag to compare

Fix an issue that sometimes prevented the file rename dialog from appearing (#114).

v0.5.6

05 Feb 17:00

Choose a tag to compare

Fix an issue where the file rename dialog sometimes would not be opened with the filename. See #108 for more information.

Minor bug fix

17 Aug 00:23

Choose a tag to compare

Fixes issue when exporting non-string literal.

more info here [https://github.com/jurassix/refactoring-codemods/issues/3]

Renamed to Javascript Refactor

03 Aug 17:18

Choose a tag to compare

v0.5.4

Prepare 0.5.4 release

README updates

03 Aug 02:13

Choose a tag to compare

Updated the README again. 😽

Dependency updates and README changes

03 Aug 01:58

Choose a tag to compare

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

22 Jul 16:53

Choose a tag to compare

Export Declaration paths are now included in codemods and refactored appropriately.

export {
  default as walkPath,
} from './walkPath';

export * from './walkPath';

Performance Improvements

21 Jul 18:31

Choose a tag to compare

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

15 Jul 02:53

Choose a tag to compare

Package now supports renaming Directories.