@react-native/core-cli-utils 0.85.0-nightly-20260113-b60f533ac → 0.85.0-nightly-20260115-caa1fb6a0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ import type { ExecaPromise } from "execa";
14
14
  type AndroidBuildMode = "Debug" | "Release";
15
15
 
16
16
  type Path = string;
17
- type Args = $ReadOnlyArray<string>;
17
+ type Args = ReadonlyArray<string>;
18
18
 
19
19
  type Config = {
20
20
  cwd: Path,
@@ -58,7 +58,7 @@ type BundlerBuild = {
58
58
  type Bundler = BundlerWatch | BundlerBuild;
59
59
 
60
60
  declare export const tasks: {
61
- bundle: (options: BundlerOptions, ...args: $ReadOnlyArray<string>) => Bundle,
61
+ bundle: (options: BundlerOptions, ...args: ReadonlyArray<string>) => Bundle,
62
62
  };
63
63
 
64
64
  type Bundle = {
@@ -59,7 +59,7 @@ declare export const tasks: {
59
59
  // 2. Build the iOS app using a setup environment
60
60
  build: (
61
61
  options: AppleBuildOptions,
62
- ...args: $ReadOnlyArray<string>
62
+ ...args: ReadonlyArray<string>
63
63
  ) => {
64
64
  validate: Task<void>,
65
65
  hasPodsInstalled: Task<void>,
@@ -33,5 +33,5 @@ declare export function isOnPath(
33
33
  ): PathCheckResult;
34
34
 
35
35
  declare export function assertDependencies(
36
- ...deps: $ReadOnlyArray<ReturnType<typeof isOnPath>>
36
+ ...deps: ReadonlyArray<ReturnType<typeof isOnPath>>
37
37
  ): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native/core-cli-utils",
3
- "version": "0.85.0-nightly-20260113-b60f533ac",
3
+ "version": "0.85.0-nightly-20260115-caa1fb6a0",
4
4
  "description": "React Native CLI library for Frameworks to build on",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -29,6 +29,6 @@
29
29
  "dependencies": {},
30
30
  "devDependencies": {},
31
31
  "engines": {
32
- "node": ">= 20.19.4"
32
+ "node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
33
33
  }
34
34
  }