diff --git a/README.md b/README.md index 36d330b0b..6627a7a2c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ Welcome to PatternFly-Ng. This is a library of common Angular components for us - API Docs: http://www.patternfly.org/patternfly-ng/ - Build Status: https://travis-ci.org/patternfly/patternfly-ng.svg?branch=master - ### Using PatternFly-ng In Your Application This example demonstrates using the Angular-cli to get started with PatternFly-ng @@ -54,7 +53,6 @@ import { ToastNotificationModule } from 'patternfly-ng'; ```json "styles": [ - "./node_modules/patternfly/dist/css/patternfly.min.css", "./node_modules/patternfly/dist/css/patternfly-additions.min.css", "./node_modules/patternfly-ng/dist/css/patternfly-ng.min.css", @@ -72,6 +70,13 @@ import { ToastNotificationModule } from 'patternfly-ng'; ``` +5. For Angular 8, open `angular.json` and insert the following into the options array + +``` +"options": { + "preserveSymlinks": true, +``` + ### Optional Dependencies 1. To enable table drag and drop, add dragula.min.css from the ng2-dragula package diff --git a/package.json b/package.json index 61d015372..a34926c3d 100644 --- a/package.json +++ b/package.json @@ -93,10 +93,10 @@ "npm": ">=5.6.0" }, "peerDependencies": { - "@angular/common": "<7.0.0", - "@angular/compiler": "<7.0.0", - "@angular/core": "<7.0.0", - "@angular/forms": "<7.0.0", + "@angular/common": "<8.0.0", + "@angular/compiler": "<8.0.0", + "@angular/core": "<8.0.0", + "@angular/forms": "<8.0.0", "typescript": "^2.9.2", "rxjs": "^6.2.2" }, @@ -108,7 +108,7 @@ "@swimlane/ngx-datatable": "^13.0.0", "c3": "^0.4.15", "ng2-dragula": "^1.5.0", - "ngx-bootstrap": "^3.0.0" + "ngx-bootstrap": "^3.0.0 || <3.3.0" }, "devDependencies": { "@angular-devkit/core": "0.7.1",