Change import
org.openrewrite.javascript.change-import
Changes an import from one module/member to another, updating all type attributions.
Recipe source
GitHub: rewrite+org.openrewrite.javascript.change-import, Issue Tracker, Code Genome Project
This recipe is available under the Moderne Source Available License. Moderne customers can download precompiled artifacts from The Code Genome Project. For non-commercial use you can build the artifact from source locally.
Options
| Type | Name | Description | Example |
|---|---|---|---|
null | oldModule | The module to change imports from | react-dom/test-utils |
null | oldMember | The member to change (or 'default' for default imports, '*' for namespace imports) | act |
null | newModule | The module to change imports to | react |
null | newMember | Optional. The new member name. If not specified, keeps the same member name. | act |
null | newAlias | Optional. Optional alias for the new import. Required when newMember is 'default' or '*'. |
Used by
This recipe is used as part of the following composite recipes:
- Migrate
PrimeNGConfigtoPrimeNG - Move
DOCUMENTimport to@angular/core - Rename
CalendartoDatePicker - Rename
DropdowntoSelect - Rename
InputSwitchtoToggleSwitch - Rename
Messageinterface toToastMessageOptions - Rename
OverlayPaneltoPopover - Rename
SidebartoDrawer
Usage
In order to run JavaScript recipes, you will need to use the Moderne CLI. For JavaScript specific configuration instructions, please see our configuring JavaScript guide.
Once the CLI is installed, you can install this JavaScript recipe package by running the following command:
mod config recipes npm install @openrewrite/rewrite
Then, you can run the recipe via:
mod run . --recipe org.openrewrite.javascript.change-import