Skip to content

Commit e15fb86

Browse files
committed
chore: release v1.2.0
1 parent caab9c3 commit e15fb86

22 files changed

Lines changed: 34 additions & 21 deletions

File tree

actions/shared/index.cjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4425,7 +4425,12 @@ var ConfigSchema = external_exports.object({
44254425
crashDetectionInterval: external_exports.number().min(100, "Crash detection interval must be at least 100ms").default(500),
44264426
disableViewFlattening: external_exports.boolean().optional().default(false).describe("Disable view flattening in React Native. This will set collapsable={true} for all View components to ensure they are not flattened by the native layout engine."),
44274427
coverage: external_exports.object({
4428-
root: external_exports.string().optional().describe(`Root directory for coverage instrumentation in monorepo setups. Specifies the directory from which coverage data should be collected. Use ".." for create-react-native-library projects where tests run from example/ but source files are in parent directory. Passed to babel-plugin-istanbul's cwd option.`)
4428+
root: external_exports.string().optional().describe(`Root directory for coverage instrumentation in monorepo setups. Specifies the directory from which coverage data should be collected. Use ".." for create-react-native-library projects where tests run from example/ but source files are in parent directory. Passed to babel-plugin-istanbul's cwd option.`),
4429+
native: external_exports.object({
4430+
ios: external_exports.object({
4431+
pods: external_exports.array(external_exports.string()).min(1, "At least one pod name is required").describe("Pod names to instrument for native code coverage. Coverage flags are injected at pod install time via a CocoaPods hook. After tests, profraw data is collected and converted to lcov format.")
4432+
}).optional()
4433+
}).optional().describe("Native code coverage configuration.")
44294434
}).optional(),
44304435
forwardClientLogs: external_exports.boolean().optional().default(false).describe("Enable forwarding of console.log, console.warn, console.error, and other console method calls from the React Native app during the active test run. When enabled, app console output is attached to the active test result's console output."),
44314436
// Deprecated property - used for migration detection

packages/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/babel-preset",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"type": "commonjs",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/bridge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/bridge",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/bundler-metro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-native-harness/bundler-metro",
33
"description": "Metro bundler for React Native Harness",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"type": "module",
66
"main": "./dist/index.js",
77
"module": "./dist/index.js",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/cli",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-harness/config",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

packages/coverage-ios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@react-native-harness/coverage-ios",
33
"description": "Native iOS code coverage support for React Native Harness.",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"type": "module",
66
"exports": {
77
"./package.json": "./package.json",

packages/coverage-ios/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"files": [],
44
"include": [],
55
"references": [
6+
{
7+
"path": "../config"
8+
},
69
{
710
"path": "./tsconfig.lib.json"
811
}

packages/coverage-ios/tsconfig.lib.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,10 @@
1010
"types": ["node"],
1111
"lib": ["DOM", "ES2022"]
1212
},
13-
"include": ["src/**/*.ts"]
13+
"include": ["src/**/*.ts"],
14+
"references": [
15+
{
16+
"path": "../config/tsconfig.lib.json"
17+
}
18+
]
1419
}

packages/github-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@react-native-harness/github-action",
33
"private": true,
44
"description": "GitHub Actions for React Native Harness",
5-
"version": "1.1.0",
5+
"version": "1.2.0",
66
"type": "commonjs",
77
"exports": {
88
"./package.json": "./package.json"

0 commit comments

Comments
 (0)