-
Notifications
You must be signed in to change notification settings - Fork 19
refactor: remove simpl type alias #1332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,5 +35,3 @@ export class SiLivePreviewModule { | |
| }; | ||
| } | ||
| } | ||
|
|
||
| export { SiLivePreviewModule as SimplLivePreviewModule }; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,5 +10,3 @@ import { SiMapModule } from './components/si-map/index'; | |
| exports: [SiMapModule] | ||
| }) | ||
| export class SiMapsNgModule {} | ||
|
|
||
| export { SiMapsNgModule as SimplMapsNgModule }; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to other removals in this PR, while removing this alias is correct, the corresponding entry for |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,5 +10,3 @@ import { SiNChartGaugeComponent } from '@siemens/native-charts-ng/gauge'; | |
| exports: [SiNChartGaugeComponent] | ||
| }) | ||
| export class SiNativeChartsNgModule {} | ||
|
|
||
| export { SiNativeChartsNgModule as SimplNativeChartsNgModule }; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The removal of the |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this alias is a good cleanup. However, the migration schematic mapping for
SimplChartsNgModulestill exists inprojects/element-ng/schematics/ts-import-to-siemens-migration/mappings/charts-ng-mappings.ts. Since this alias is being removed, the mapping is now likely obsolete and should probably be removed as well to avoid issues with the migration schematic.