@react-native/community-cli-plugin 0.84.0-rc.0 → 0.85.0-nightly-20260108-1236b6be4

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.
@@ -50,7 +50,7 @@ function getResourceIdentifier(asset) {
50
50
  .toLowerCase()
51
51
  .replace(/\//g, "_")
52
52
  .replace(/([^a-z0-9_])/g, "")
53
- .replace(/^assets_/, "");
53
+ .replace(/^(?:assets|assetsunstable_path)_/, "");
54
54
  }
55
55
  function getBasePath(asset) {
56
56
  let basePath = asset.httpServerLocation;
@@ -8,7 +8,7 @@
8
8
  * @format
9
9
  */
10
10
 
11
- export type PackagerAsset = $ReadOnly<{
11
+ export type PackagerAsset = Readonly<{
12
12
  httpServerLocation: string,
13
13
  name: string,
14
14
  type: string,
@@ -12,7 +12,7 @@ import type { TerminalReporter } from "metro";
12
12
 
13
13
  declare export default function attachKeyHandlers($$PARAM_0$$: {
14
14
  devServerUrl: string,
15
- messageSocket: $ReadOnly<{
15
+ messageSocket: Readonly<{
16
16
  broadcast: (type: string, params?: Record<string, unknown> | null) => void,
17
17
  ...
18
18
  }>,
@@ -18,7 +18,7 @@ type LoggerFn = (...message: $ReadOnlyArray<string>) => void;
18
18
  */
19
19
  declare export default function createDevMiddlewareLogger(
20
20
  reporter: TerminalReporter,
21
- ): $ReadOnly<{
21
+ ): Readonly<{
22
22
  info: LoggerFn,
23
23
  error: LoggerFn,
24
24
  warn: LoggerFn,
@@ -13,7 +13,7 @@ import type { ConfigT, YargArguments } from "metro-config";
13
13
 
14
14
  export type { Config };
15
15
 
16
- export type ConfigLoadingContext = $ReadOnly<{
16
+ export type ConfigLoadingContext = Readonly<{
17
17
  root: Config["root"],
18
18
  reactNativePath: Config["reactNativePath"],
19
19
  platforms: Config["platforms"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native/community-cli-plugin",
3
- "version": "0.84.0-rc.0",
3
+ "version": "0.85.0-nightly-20260108-1236b6be4",
4
4
  "description": "Core CLI commands for React Native",
5
5
  "keywords": [
6
6
  "react-native",
@@ -25,7 +25,7 @@
25
25
  "prepack": "node ../../scripts/build/prepack.js"
26
26
  },
27
27
  "dependencies": {
28
- "@react-native/dev-middleware": "0.84.0-rc.0",
28
+ "@react-native/dev-middleware": "0.85.0-nightly-20260108-1236b6be4",
29
29
  "debug": "^4.4.0",
30
30
  "invariant": "^2.2.4",
31
31
  "metro": "^0.83.3",