Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions libs/schematics/src/ng-add/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ interface ImportingModule {
export const MAIN_PACKAGES: ReadonlyArray<Package> = [
{
name: '@prizm-ui/core',
version: '2.2.0',
version: '5.0.0',
},
{
name: '@prizm-ui/components',
version: '2.2.0',
version: '5.0.0',
},
{
name: '@prizm-ui/helpers',
version: '2.2.0',
version: '5.0.0',
},
];

export const INSTALL_PACKAGE: Readonly<Package> = {
name: '@prizm-ui/install',
version: '2.2.0',
version: '5.0.0',
};

export const MAIN_MODULES: ReadonlyArray<ImportingModule> = [
Expand Down
36 changes: 36 additions & 0 deletions libs/schematics/src/ng-add/consts.ts.ng17
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
interface Package {
name: string;
version: string;
}

interface ImportingModule {
name: string;
packageName: string;
}

export const MAIN_PACKAGES: ReadonlyArray<Package> = [
{
name: '@prizm-ui/core',
version: '<%= version %>',
},
{
name: '@prizm-ui/components',
version: '<%= version %>',
},
{
name: '@prizm-ui/helpers',
version: '<%= version %>',
},
];

export const INSTALL_PACKAGE: Readonly<Package> = {
name: '@prizm-ui/install',
version: '<%= version %>',
};

export const MAIN_MODULES: ReadonlyArray<ImportingModule> = [
{
name: 'PrizmUiRootModule',
packageName: '@prizm-ui/components',
},
];