rename-angular-component
rename-angular-component copied to clipboard
VS Code Extension: Rename Angular Component
**Describe the bug** I rename a `standalone` component which is enlisted in the `app.module` in the `imports: [`. **Expected behavior** Rename of the enlisted component in the `imports: [` list....
👋 Hi there!! I have been using your extension and I love it! I would like to contribute and I want to show you my small idea. I am one...
**Is your feature request related to a problem? Please describe.** VS Code is able to open multiple project folders inside a VS Code Workspace. The Renamer process currently will change...
**Is your feature request related to a problem? Please describe.** Angular 20 is introducing a new style guide and changes to the CLI to use simpler file naming conventions. The...
**Describe the bug** Using this extension in a running devcontainer does not work **To Reproduce** Steps to reproduce the behavior: - use VSCODE. - add a devcontainer in an existing...
Angular 20 Modules and Pipes are now suffixed by -module and -pipe, respectively. When a user renames one of these two file types, the Renamer should treat these dash suffixes...
**Describe the bug** Depending on the `app.routes` configuration (i.e. some apps, not others), the route paths get rewritten incorrectly. See example below: **To Reproduce** Right click the `src/app/app.component.ts` or `src/app/app.ts`...
After renaming the import of the angular components are missing the slash in path. Before: import { Component, Inject } from '@angular/core'; import { DomSanitizer } from '@angular/platform-browser'; After: import...