diff --git a/package.json b/package.json index 71171123..b5c61d32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rn-boiler-template", - "version": "1.70.4", + "version": "1.70.5", "description": "Clean and minimalist React Native template for a quick start with TypeScript and components", "scripts": { "test": "exit 0" diff --git a/template/env/.dev b/template/env/.dev index c47d09ff..2acb63db 100644 --- a/template/env/.dev +++ b/template/env/.dev @@ -5,7 +5,7 @@ APP_PLACEHOLDER_NAME=HelloWorld VERSION_CODE=1 VERSION_NAME=1.0.0 BUNDLE_IDENTIFIER=com.helloworld -ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon +ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon-Dev DEBUG_PROVISIONING_PROFILE=com_helloworld RELEASE_PROVISIONING_PROFILE=com_helloworld_appstore DEFAULT_FALLBACK_LNG_I18n=en \ No newline at end of file diff --git a/template/package.json b/template/package.json index b3e5f0e6..d82f6f81 100644 --- a/template/package.json +++ b/template/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "test": "jest", - "lint": "eslint index.js ./__tests__/** ./scripts/*.js ./src/** --ext .js,.ts,.tsx", + "lint": "eslint index.js ./scripts/*.js ./src/** --ext .js,.ts,.tsx", "start": "npx react-native start --reset-cache", "format": "prettier --write **/*.{ts,tsx,js,json,md}", "splash": "yarn react-native generate-bootsplash splash/splash.png --background-color=FFFFFF --logo-width=150 --assets-path=assets --flavor=main", diff --git a/template/src/app/config/type.ts b/template/src/app/config/type.ts index 66064ce7..4ec3b187 100644 --- a/template/src/app/config/type.ts +++ b/template/src/app/config/type.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ export type ResponseBase = { code: number; } & (TStatus extends true