From 25b9ceaa289702d7c9063e7b74580964cf93bf69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sarstr=C3=B6m?= Date: Wed, 1 Dec 2021 10:35:36 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=92=A1=20Updated=20package.js?= =?UTF-8?q?on=20on=20app=20so=20haste=20module=20owrks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ios/app.xcodeproj/project.pbxproj | 12 ++++++------ apps/skolplattformen/package.json | 2 +- libs/api/tsconfig.json | 2 +- tsconfig.base.json | 11 +++++++---- 4 files changed, 15 insertions(+), 12 deletions(-) diff --git a/apps/skolplattformen/ios/app.xcodeproj/project.pbxproj b/apps/skolplattformen/ios/app.xcodeproj/project.pbxproj index 562386c0..65960476 100644 --- a/apps/skolplattformen/ios/app.xcodeproj/project.pbxproj +++ b/apps/skolplattformen/ios/app.xcodeproj/project.pbxproj @@ -573,9 +573,9 @@ ); inputPaths = ( "${PODS_ROOT}/Target Support Files/Pods-app/Pods-app-frameworks.sh", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/double-conversion/double-conversion.framework/double-conversion", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes/hermes.framework/hermes", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( @@ -595,9 +595,9 @@ ); inputPaths = ( "${PODS_ROOT}/Target Support Files/Pods-app-appTests/Pods-app-appTests-frameworks.sh", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/double-conversion/double-conversion.framework/double-conversion", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", + "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes/hermes.framework/hermes", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( diff --git a/apps/skolplattformen/package.json b/apps/skolplattformen/package.json index 588a2f0d..c2bd365b 100644 --- a/apps/skolplattformen/package.json +++ b/apps/skolplattformen/package.json @@ -1,5 +1,5 @@ { - "name": "skolplattformen", + "name": "skolplattformen-app", "version": "0.0.1", "scripts": { "android": "react-native run-android", diff --git a/libs/api/tsconfig.json b/libs/api/tsconfig.json index c85f92e7..df69f760 100644 --- a/libs/api/tsconfig.json +++ b/libs/api/tsconfig.json @@ -10,7 +10,7 @@ "sourceMap": true, "esModuleInterop": true }, - "include": ["lib", "../../__mocks__" ], + "include": ["lib" ], "exclude": [ "node_modules", "**/__tests__/*", diff --git a/tsconfig.base.json b/tsconfig.base.json index c5e09c7d..0669a897 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -23,11 +23,14 @@ "@skolplattformen/api-hjarntorget": [ "libs/api-hjarntorget/lib/index.ts" ], - "@skolplattformen/api": [ - "libs/api/lib/index.ts" - ], "@skolplattformen/curriculum": ["libs/curriculum/src/index.ts"], "@skolplattformen/hooks": ["libs/hooks/src/index.ts"] - } + }, + "exclude": [ + "node_modules", + "**/__tests__/*", + "**/__mocks__/*", + "**/*.test.ts" + ] } }