metro-source-map 0.83.0 → 0.83.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metro-source-map",
|
|
3
|
-
"version": "0.83.
|
|
3
|
+
"version": "0.83.1",
|
|
4
4
|
"description": "🚇 Source map generator for Metro.",
|
|
5
5
|
"main": "src/source-map.js",
|
|
6
6
|
"exports": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"@babel/types": "^7.25.2",
|
|
23
23
|
"flow-enums-runtime": "^0.0.6",
|
|
24
24
|
"invariant": "^2.2.4",
|
|
25
|
-
"metro-symbolicate": "0.83.
|
|
25
|
+
"metro-symbolicate": "0.83.1",
|
|
26
26
|
"nullthrows": "^1.1.1",
|
|
27
|
-
"ob1": "0.83.
|
|
27
|
+
"ob1": "0.83.1",
|
|
28
28
|
"source-map": "^0.5.6",
|
|
29
29
|
"vlq": "^1.0.0"
|
|
30
30
|
},
|
|
@@ -35,6 +35,6 @@
|
|
|
35
35
|
"terser": "^5.15.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
|
-
"node": ">=
|
|
38
|
+
"node": ">=20.19.4"
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -5,11 +5,7 @@ var _traverseForGenerateFunctionMap = _interopRequireDefault(
|
|
|
5
5
|
);
|
|
6
6
|
var _types = require("@babel/types");
|
|
7
7
|
function _interopRequireDefault(e) {
|
|
8
|
-
return e && e.__esModule
|
|
9
|
-
? e
|
|
10
|
-
: {
|
|
11
|
-
default: e,
|
|
12
|
-
};
|
|
8
|
+
return e && e.__esModule ? e : { default: e };
|
|
13
9
|
}
|
|
14
10
|
const B64Builder = require("./B64Builder");
|
|
15
11
|
const t = require("@babel/types");
|
package/src/source-map.js.flow
CHANGED
|
@@ -104,7 +104,7 @@ function fromRawMappingsImpl(
|
|
|
104
104
|
isBlocking: boolean,
|
|
105
105
|
onDone: Generator => void,
|
|
106
106
|
modules: $ReadOnlyArray<{
|
|
107
|
-
+map:
|
|
107
|
+
+map: ?$ReadOnlyArray<MetroSourceMapSegmentTuple>,
|
|
108
108
|
+functionMap: ?FBSourceFunctionMap,
|
|
109
109
|
+path: string,
|
|
110
110
|
+source: string,
|
|
@@ -175,7 +175,7 @@ function fromRawMappingsImpl(
|
|
|
175
175
|
*/
|
|
176
176
|
function fromRawMappings(
|
|
177
177
|
modules: $ReadOnlyArray<{
|
|
178
|
-
+map:
|
|
178
|
+
+map: ?$ReadOnlyArray<MetroSourceMapSegmentTuple>,
|
|
179
179
|
+functionMap: ?FBSourceFunctionMap,
|
|
180
180
|
+path: string,
|
|
181
181
|
+source: string,
|
|
@@ -202,7 +202,7 @@ function fromRawMappings(
|
|
|
202
202
|
|
|
203
203
|
async function fromRawMappingsNonBlocking(
|
|
204
204
|
modules: $ReadOnlyArray<{
|
|
205
|
-
+map:
|
|
205
|
+
+map: ?$ReadOnlyArray<MetroSourceMapSegmentTuple>,
|
|
206
206
|
+functionMap: ?FBSourceFunctionMap,
|
|
207
207
|
+path: string,
|
|
208
208
|
+source: string,
|