From 246db4839bf6a5347ff85c5b7e86bf4e53882f56 Mon Sep 17 00:00:00 2001 From: David Whitlark Date: Tue, 8 Aug 2023 18:24:38 -0400 Subject: [PATCH] fix: exclude scripts folder when building typescript types --- example/ios/AmazonIvsExample.xcodeproj/project.pbxproj | 4 ++-- example/ios/Podfile.lock | 2 +- package.json | 2 +- tsconfig.build.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/example/ios/AmazonIvsExample.xcodeproj/project.pbxproj b/example/ios/AmazonIvsExample.xcodeproj/project.pbxproj index dcfeb6a..4af54a1 100644 --- a/example/ios/AmazonIvsExample.xcodeproj/project.pbxproj +++ b/example/ios/AmazonIvsExample.xcodeproj/project.pbxproj @@ -598,7 +598,7 @@ EXCLUDED_ARCHS = ""; INFOPLIST_FILE = AmazonIvsExample/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.4.0; + MARKETING_VERSION = 1.4.1; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -624,7 +624,7 @@ EXCLUDED_ARCHS = ""; INFOPLIST_FILE = AmazonIvsExample/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.4.0; + MARKETING_VERSION = 1.4.1; ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "$(inherited)", diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index c79a823..0e15b9c 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - amazon-ivs-react-native-player (1.4.0): + - amazon-ivs-react-native-player (1.4.1): - AmazonIVSPlayer (~> 1.18.0) - React-Core - AmazonIVSPlayer (1.18.0) diff --git a/package.json b/package.json index b7c0d5b..a661054 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amazon-ivs-react-native-player", - "version": "1.4.0", + "version": "1.4.1", "description": "amazon-ivs-react-native-player", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/tsconfig.build.json b/tsconfig.build.json index 999d3f3..a566297 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,5 +1,5 @@ { "extends": "./tsconfig", - "exclude": ["example"] + "exclude": ["example", "scripts"] }