From 5a9bd2537c47880907e979c0efcc639f93cef7b1 Mon Sep 17 00:00:00 2001 From: Tal Weinfeld Date: Tue, 22 Jun 2021 11:26:53 +0300 Subject: [PATCH 1/3] feat(packages): redundant configuration --- common/umbrella/configs/tsconfig.json | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/common/umbrella/configs/tsconfig.json b/common/umbrella/configs/tsconfig.json index 893c2b1e7a..b5200dd7cc 100644 --- a/common/umbrella/configs/tsconfig.json +++ b/common/umbrella/configs/tsconfig.json @@ -24,22 +24,9 @@ "strict": true, "outDir": "./", "baseUrl": "./", - "paths": { - "@vivid/vvd-*": [ - "./*.src" - ], - "@vivid/vwc-*": [ - "./*/src" - ] - }, "composite": true, "importHelpers": true, "allowSyntheticDefaultImports": true // "esModuleInterop": true // would force consumers to enable this as well - }, - "include": [ - "custom_typings/**/*.ts", - "src/**/*.ts" - ], - "exclude": [] -} \ No newline at end of file + } +} From 9ee1fafb57e2286f2f69f8a786426869eecb19f3 Mon Sep 17 00:00:00 2001 From: Tal Weinfeld Date: Tue, 22 Jun 2021 12:02:47 +0300 Subject: [PATCH 2/3] feat(packages): redundant configuration --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 56c7021d3f..5781a1628e 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "compile:styles": "lerna run build:styles --stream", "compile:typescript": "lerna run build:typescript", "clean:typescript": "tsc -b --clean", - "clean:git": "git clean -xdf", + "clean:git": "git clean -df", "clean": "yarn clean:typescript && yarn clean:git", "watch": "monowatch", "wca:json": "wca analyze components/*/src/*.?s --outFile custom-elements.json", From c1ae619a46f35ccecad1c4ff6149fc149191f62c Mon Sep 17 00:00:00 2001 From: Tal Weinfeld Date: Tue, 22 Jun 2021 15:46:54 +0300 Subject: [PATCH 3/3] fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5781a1628e..135c1cc75c 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "compile:styles": "lerna run build:styles --stream", "compile:typescript": "lerna run build:typescript", "clean:typescript": "tsc -b --clean", - "clean:git": "git clean -df", + "clean:git": "git clean -e .npmrc -dfx", "clean": "yarn clean:typescript && yarn clean:git", "watch": "monowatch", "wca:json": "wca analyze components/*/src/*.?s --outFile custom-elements.json",