Skip to content

Commit

Permalink
chore: clean up new config
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliusguzas committed Jul 1, 2024
1 parent c9d2d9e commit 9128660
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 187 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

112 changes: 1 addition & 111 deletions packages/app-harness/appConfigs/unicorn/renative.json
Original file line number Diff line number Diff line change
@@ -1,115 +1,5 @@
{
"$schema": "../../.rnv/schema/rnv.app.json",
"extendsTemplate": "@rnv/template-starter/appConfigs/base/renative.json",
"id": "unicorn",
"common": {
"id": "renative.harness",
"title": "Harness",
"description": "Test Harness for ReNative",
"runtime": {
"welcomeMessage": "Hello ReNative Harness!"
},
"buildSchemes": {
"debug": {
"id": "renative.harness.debug",
"title": "Debug Harness"
},
"test": {
"id": "renative.harness.test",
"title": "Test Harness"
}
},
"fontSources": ["{{resolvePackage(react-native-vector-icons)}}/Fonts"],
"excludedPlugins": ["@react-native-firebase/app"]
},
"platforms": {
"ios": {
"entitlements": {
"aps-environment": "development"
},
"buildSchemes": {
"debug-static-pods": {
"runScheme": "Debug",
"bundleAssets": false,
"templateXcode": {
"Podfile": {
"sources": ["https://github.com/CocoaPods/Specs.git"],
"header": [
"plugin 'cocoapods-user-defined-build-types'",
"enable_user_defined_build_types!"
]
}
},
"excludedPlugins": []
},
"release": {
"id": "com.renative.harness.ios",
"provisionProfileSpecifier": "renative harness adhoc ios",
"provisioningStyle": "Manual",
"codeSignIdentity": "Apple Distribution",
"exportOptions": {
"method": "ad-hoc",
"uploadBitcode": true,
"compileBitcode": false,
"uploadSymbols": true,
"signingStyle": "manual",
"provisioningProfiles": {
"com.renative.harness.ios": "renative harness adhoc ios"
}
}
}
}
},
"tvos": {
"buildSchemes": {
"release": {
"id": "com.renative.harness.tvos",
"provisionProfileSpecifier": "renative harness adhoc tvos",
"provisioningStyle": "Manual",
"codeSignIdentity": "Apple Distribution",
"exportOptions": {
"method": "ad-hoc",
"uploadBitcode": true,
"compileBitcode": false,
"uploadSymbols": true,
"signingStyle": "manual",
"provisioningProfiles": {
"com.renative.harness.tvos": "renative harness adhoc tvos"
}
}
}
}
},
"android": {
"reactNativeEngine": "hermes",
"buildSchemes": {
"debug-jsc": {
"signingConfig": "Debug",
"bundleAssets": false,
"reactNativeEngine": "jsc"
}
}
},
"tizen": {
"package": "NkVRhWHJST",
"id": "NkVRhWHJST.RNVanillaTV"
},
"tizenwatch": {
"package": "cHIP2fIRQZ",
"id": "cHIP2fIRQZ.RNVanillaWatch"
},
"tizenmobile": {
"package": "PauodvCU2r",
"id": "PauodvCU2r.RNVanillaMobile"
},
"web": {
"buildSchemes": {
"debug-engine-rn-web": {
"bundleAssets": false,
"environment": "development",
"engine": "engine-rn-web"
}
}
}
}
"id": "unicorn"
}
8 changes: 0 additions & 8 deletions packages/app-harness/appConfigs/unicorn/rnv.json

This file was deleted.

47 changes: 25 additions & 22 deletions packages/app-harness/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
{
"extends": "@flexn/typescript-config/tsconfig.app.json",
"compilerOptions": {
"outDir": "./lib",
"rootDir": ".",
"noImplicitAny": false,
// "resolveJsonModule": false
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"platformBuilds/template_web/.next/types/**/*.ts",
"platformBuilds/harness_web/.next/types/**/*.ts",
".next/types/**/*.ts",
"platformBuilds/harness_web/output/types/**/*.ts"
"extends": "@flexn/typescript-config/tsconfig.app.json",
"compilerOptions": {
"outDir": "./lib",
"rootDir": ".",
"noImplicitAny": false,
// "resolveJsonModule": false
"plugins": [
{
"name": "next"
}
],
"exclude": ["**/rn_modules"]
"strictNullChecks": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"platformBuilds/template_web/.next/types/**/*.ts",
"platformBuilds/harness_web/.next/types/**/*.ts",
".next/types/**/*.ts",
"platformBuilds/harness_web/output/types/**/*.ts",
"platformBuilds/unicorn_web/output/types/**/*.ts"
],
"exclude": [
"**/rn_modules"
]
}

0 comments on commit 9128660

Please sign in to comment.