From d1c6c28b929717d07e2d0f23ff8553f6dc053ddd Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Wed, 14 Jul 2021 21:50:55 +0100 Subject: [PATCH] Sync workspace config with nx.json --- workspace.json | 76 +++++++++++++++++++++++++------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/workspace.json b/workspace.json index cf80740abd..0790909a05 100644 --- a/workspace.json +++ b/workspace.json @@ -807,6 +807,44 @@ } } }, + "remix-ui-solidity-compiler": { + "root": "libs/remix-ui/solidity-compiler", + "sourceRoot": "libs/remix-ui/solidity-compiler/src", + "projectType": "library", + "schematics": {}, + "architect": { + "lint": { + "builder": "@nrwl/linter:lint", + "options": { + "linter": "eslint", + "tsConfig": ["libs/remix-ui/solidity-compiler/tsconfig.lib.json"], + "exclude": [ + "**/node_modules/**", + "!libs/remix-ui/solidity-compiler/**/*" + ] + } + } + } + }, + "remix-ui-publish-to-storage": { + "root": "libs/remix-ui/publish-to-storage", + "sourceRoot": "libs/remix-ui/publish-to-storage/src", + "projectType": "library", + "schematics": {}, + "architect": { + "lint": { + "builder": "@nrwl/linter:lint", + "options": { + "linter": "eslint", + "tsConfig": ["libs/remix-ui/publish-to-storage/tsconfig.lib.json"], + "exclude": [ + "**/node_modules/**", + "!libs/remix-ui/publish-to-storage/**/*" + ] + } + } + } + }, "remix-ui-renderer": { "root": "libs/remix-ui/renderer", "sourceRoot": "libs/remix-ui/renderer/src", @@ -824,44 +862,6 @@ } } }, - "remix-ui-solidity-compiler": { - "root": "libs/remix-ui/solidity-compiler", - "sourceRoot": "libs/remix-ui/solidity-compiler/src", - "projectType": "library", - "schematics": {}, - "architect": { - "lint": { - "builder": "@nrwl/linter:lint", - "options": { - "linter": "eslint", - "tsConfig": ["libs/remix-ui/solidity-compiler/tsconfig.lib.json"], - "exclude": [ - "**/node_modules/**", - "!libs/remix-ui/solidity-compiler/**/*" - ] - } - } - } - }, - "remix-ui-publish-to-storage": { - "root": "libs/remix-ui/publish-to-storage", - "sourceRoot": "libs/remix-ui/publish-to-storage/src", - "projectType": "library", - "schematics": {}, - "architect": { - "lint": { - "builder": "@nrwl/linter:lint", - "options": { - "linter": "eslint", - "tsConfig": ["libs/remix-ui/publish-to-storage/tsconfig.lib.json"], - "exclude": [ - "**/node_modules/**", - "!libs/remix-ui/publish-to-storage/**/*" - ] - } - } - } - }, "cli": { "defaultCollection": "@nrwl/react" },