diff --git a/libs/schematics/src/ng-add/consts.ts b/libs/schematics/src/ng-add/consts.ts index 127aead873..4396ce1c79 100644 --- a/libs/schematics/src/ng-add/consts.ts +++ b/libs/schematics/src/ng-add/consts.ts @@ -11,21 +11,21 @@ interface ImportingModule { export const MAIN_PACKAGES: ReadonlyArray = [ { 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 = { name: '@prizm-ui/install', - version: '2.2.0', + version: '5.0.0', }; export const MAIN_MODULES: ReadonlyArray = [ diff --git a/libs/schematics/src/ng-add/consts.ts.ng17 b/libs/schematics/src/ng-add/consts.ts.ng17 new file mode 100644 index 0000000000..86d6b55b60 --- /dev/null +++ b/libs/schematics/src/ng-add/consts.ts.ng17 @@ -0,0 +1,36 @@ +interface Package { + name: string; + version: string; +} + +interface ImportingModule { + name: string; + packageName: string; +} + +export const MAIN_PACKAGES: ReadonlyArray = [ + { + name: '@prizm-ui/core', + version: '<%= version %>', + }, + { + name: '@prizm-ui/components', + version: '<%= version %>', + }, + { + name: '@prizm-ui/helpers', + version: '<%= version %>', + }, +]; + +export const INSTALL_PACKAGE: Readonly = { + name: '@prizm-ui/install', + version: '<%= version %>', +}; + +export const MAIN_MODULES: ReadonlyArray = [ + { + name: 'PrizmUiRootModule', + packageName: '@prizm-ui/components', + }, +];