From 7cd6f3c530e9c216726afa9f39086fde7558710c Mon Sep 17 00:00:00 2001 From: Rusty Green Date: Sat, 10 Feb 2024 09:27:02 -0500 Subject: [PATCH] chore: adds primeflex ignore dep config --- README.md | 5 +++-- libs/primeng/.eslintrc.json | 7 ++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ae6177..6be501a 100644 --- a/README.md +++ b/README.md @@ -22,16 +22,17 @@ ## Features -- 🔥 Pre-designed Supabase components for popular UI libraries +- 🔥 Pre-designed Supabase components for popular UI libraries (PrimeNG, Material, Bootstrap) - ✨ Eliminate boilerplate code and get right to consuming Supabase services - 📝 Extendable and highly-configurable components - 😍 Full Supabase authentication goodness, ready to go! -- 💪 Built on top of [Angular 17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b) with [Signals]()https://angular.io/guide/signals and [SSR](https://angular.io/guide/ssr) support +- 💪 Built on top of [Angular 17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b) with [Signals](https://angular.io/guide/signals) and [SSR](https://angular.io/guide/ssr) support ## Docs - [Example Site](https://ng-supabase.netlify.app/) - Full docs coming soon... + > In the meantime, please checkout the [demo code](https://github.com/rustygreen/ng-supabase/tree/main/apps/demo) for a fully working example. ## Getting Started diff --git a/libs/primeng/.eslintrc.json b/libs/primeng/.eslintrc.json index 2c98186..6a9c629 100644 --- a/libs/primeng/.eslintrc.json +++ b/libs/primeng/.eslintrc.json @@ -36,7 +36,12 @@ "files": ["*.json"], "parser": "jsonc-eslint-parser", "rules": { - "@nx/dependency-checks": "error" + "@nx/dependency-checks": [ + "error", + { + "ignoredDependencies": ["primeflex"] + } + ] } } ]