Skip to content

Commit

Permalink
chore: fix migration issues (#8470)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirpotekhin authored Aug 12, 2024
1 parent 6141203 commit 93dd431
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ export const IDENTIFIERS_TO_REPLACE: ReplacementIdentifierMulti[] = [
from: {name: 'TuiPlatformModule', moduleSpecifier: '@taiga-ui/cdk'},
to: {name: 'TuiPlatform', moduleSpecifier: '@taiga-ui/cdk'},
},
{
from: {name: 'TUI_DIALOGS', moduleSpecifier: '@taiga-ui/cdk'},
to: {name: 'TUI_DIALOGS', moduleSpecifier: '@taiga-ui/core'},
},
{
from: {name: 'tuiSvgSrcInterceptors', moduleSpecifier: '@taiga-ui/core'},
to: {name: 'tuiSvgSrcInterceptors', moduleSpecifier: '@taiga-ui/legacy'},
},
{
from: {
name: 'tuiIconResolverProvider',
Expand Down
8 changes: 8 additions & 0 deletions projects/cdk/schematics/ng-update/v4/steps/update-packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ export function updatePackages({tree}: DevkitFileSystem, _: TuiSchema): void {
},
tree,
);
replacePackageName(
'@tinkoff/ng-dompurify',
{
name: '@taiga-ui/dompurify',
version: '^4.1.2',
},
tree,
);
replacePackageName(
'@tinkoff/ng-event-plugins',
{
Expand Down

0 comments on commit 93dd431

Please sign in to comment.