Skip to content

Commit

Permalink
Fix PROD mode issue with Download and Overview components
Browse files Browse the repository at this point in the history
  • Loading branch information
sudheerj committed Sep 18, 2018
1 parent 0577be6 commit ad42e70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generators/app/index.js
Expand Up @@ -16,7 +16,7 @@ const ANGULAR_VERSION = '6.1.0';
const PRIMENG_VERSION = '6.1.3';
const PRIMEICONS_VERSION = '1.0.0-beta.10';
const PRIMEFLEX_VERSION = '1.0.0-rc.1';
const PRIMENG_EXTENSIONS_VERSION = '0.0.44';
const PRIMENG_EXTENSIONS_VERSION = '0.0.45';
const CHARTJS_VERSION = '2.7.1';
const MOMENT_VERSION = '2.20.1';
const FULLCALENDAR_VERSION = '3.8.2';
Expand Down
Expand Up @@ -13,6 +13,10 @@ import {
tabmenuDemoRoute
} from './';

import { OverviewComponent } from './pages/overview.component';
import { DownloadsComponent } from './pages/downloads.component';


const primeng_STATES = [
tabmenuDemoRoute
];
Expand All @@ -29,7 +33,9 @@ const primeng_STATES = [
RouterModule.forRoot(primeng_STATES, { useHash: true })
],
declarations: [
TabMenuDemoComponent
TabMenuDemoComponent,
OverviewComponent,
DownloadsComponent
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "generator-jhipster-primeng",
"version": "2.0.65",
"version": "2.0.66",
"description": "Generate PrimeNG Components",
"keywords": [
"yeoman-generator",
Expand Down

0 comments on commit ad42e70

Please sign in to comment.