From 5509eea8ed4f5c023c343b79ef776cb1c4823965 Mon Sep 17 00:00:00 2001 From: lianahus Date: Mon, 6 Sep 2021 12:58:12 +0200 Subject: [PATCH] fixed config structior for plugin manager component --- workspace.json | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/workspace.json b/workspace.json index c4ac25c6b3..54bf6be2c5 100644 --- a/workspace.json +++ b/workspace.json @@ -781,12 +781,22 @@ "remix-ui-plugin-manager": { "root": "libs/remix-ui/plugin-manager", "sourceRoot": "libs/remix-ui/plugin-manager/src", - "tsConfig": ["libs/remix-ui/plugin-manager/tsconfig.lib.json"], + "projectType": "library", + "schematics": {}, + "architect": { + "lint": { + "builder": "@nrwl/linter:lint", + "options": { + "linter": "eslint", + "tsConfig": ["libs/remix-ui/plugin-manager/tsconfig.lib.json"], "exclude": [ "**/node_modules/**", "!libs/remix-ui/plugin-manager/**/*" ] - }, + } + } + } + }, "remix-core-plugin": { "root": "libs/remix-core-plugin", "sourceRoot": "libs/remix-core-plugin/src", @@ -797,13 +807,8 @@ "builder": "@nrwl/linter:lint", "options": { "linter": "eslint", - "tsConfig": [ - "libs/remix-core-plugin/tsconfig.lib.json" - ], - "exclude": [ - "**/node_modules/**", - "!libs/remix-core-plugin/**/*" - ] + "tsConfig": ["libs/remix-core-plugin/tsconfig.lib.json"], + "exclude": ["**/node_modules/**", "!libs/remix-core-plugin/**/*"] } }, "build": { @@ -868,7 +873,6 @@ "tsConfig": ["libs/remix-ui/renderer/tsconfig.lib.json"], "exclude": ["**/node_modules/**", "!libs/remix-ui/renderer/**/*"] } - } } }