@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.
- package/dist/commands/bundle/assetPathUtils.js +1 -1
- package/dist/commands/bundle/assetPathUtils.js.flow +1 -1
- package/dist/commands/start/attachKeyHandlers.js.flow +1 -1
- package/dist/utils/createDevMiddlewareLogger.js.flow +1 -1
- package/dist/utils/loadMetroConfig.js.flow +1 -1
- package/package.json +2 -2
|
@@ -50,7 +50,7 @@ function getResourceIdentifier(asset) {
|
|
|
50
50
|
.toLowerCase()
|
|
51
51
|
.replace(/\//g, "_")
|
|
52
52
|
.replace(/([^a-z0-9_])/g, "")
|
|
53
|
-
.replace(/^
|
|
53
|
+
.replace(/^(?:assets|assetsunstable_path)_/, "");
|
|
54
54
|
}
|
|
55
55
|
function getBasePath(asset) {
|
|
56
56
|
let basePath = asset.httpServerLocation;
|
|
@@ -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:
|
|
15
|
+
messageSocket: Readonly<{
|
|
16
16
|
broadcast: (type: string, params?: Record<string, unknown> | null) => void,
|
|
17
17
|
...
|
|
18
18
|
}>,
|
|
@@ -13,7 +13,7 @@ import type { ConfigT, YargArguments } from "metro-config";
|
|
|
13
13
|
|
|
14
14
|
export type { Config };
|
|
15
15
|
|
|
16
|
-
export type ConfigLoadingContext =
|
|
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.
|
|
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.
|
|
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",
|