Merge pull request #1560 from ethereum/homeTabReact

fixed config structure for plugin manager component
pull/5370/head
David Disu 3 years ago committed by GitHub
commit 6a86f9ae75
  1. 24
      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/**/*"]
}
}
}
}

Loading…
Cancel
Save