Skip to content

Commit fc475c4

Browse files
committed
chore: publish action
1 parent c447d57 commit fc475c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

actions/shared/index.cjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4212,7 +4212,8 @@ var NEVER = INVALID;
42124212
var RunnerSchema = external_exports.object({
42134213
name: external_exports.string().min(1, "Runner name is required").regex(/^[a-zA-Z0-9._-]+$/, "Runner name can only contain alphanumeric characters, dots, underscores, and hyphens"),
42144214
config: external_exports.record(external_exports.any()),
4215-
runner: external_exports.string()
4215+
runner: external_exports.string(),
4216+
platformId: external_exports.string()
42164217
});
42174218
var ConfigSchema = external_exports.object({
42184219
entryPoint: external_exports.string().min(1, "Entry point is required"),
@@ -4228,6 +4229,7 @@ var ConfigSchema = external_exports.object({
42284229
unstable__enableMetroCache: external_exports.boolean().optional().default(false),
42294230
detectNativeCrashes: external_exports.boolean().optional().default(true),
42304231
crashDetectionInterval: external_exports.number().min(100, "Crash detection interval must be at least 100ms").default(500),
4232+
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."),
42314233
coverage: external_exports.object({
42324234
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.`)
42334235
}).optional(),

0 commit comments

Comments
 (0)