@parcel/graph 3.2.1-canary.3201 → 3.2.1-canary.3202
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": "@parcel/graph",
|
3
|
-
"version": "3.2.1-canary.
|
3
|
+
"version": "3.2.1-canary.3202+20c4a9bc4",
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
5
5
|
"license": "MIT",
|
6
6
|
"publishConfig": {
|
@@ -20,8 +20,8 @@
|
|
20
20
|
"node": ">= 16.0.0"
|
21
21
|
},
|
22
22
|
"dependencies": {
|
23
|
-
"@parcel/feature-flags": "2.12.1-canary.
|
23
|
+
"@parcel/feature-flags": "2.12.1-canary.3202+20c4a9bc4",
|
24
24
|
"nullthrows": "^1.1.1"
|
25
25
|
},
|
26
|
-
"gitHead": "
|
26
|
+
"gitHead": "20c4a9bc48d053fed198eba126eee2b7dfe693d2"
|
27
27
|
}
|
@@ -292,7 +292,8 @@ describe('AdjacencyList', () => {
|
|
292
292
|
let work = new Promise(resolve => worker.on('message', resolve));
|
293
293
|
worker.postMessage(originalSerialized);
|
294
294
|
let received = AdjacencyList.deserialize(await work);
|
295
|
-
|
295
|
+
// eslint-disable-next-line no-unused-vars
|
296
|
+
const _terminatePromise = worker.terminate();
|
296
297
|
|
297
298
|
assert.deepEqual(received.serialize().nodes, graph.serialize().nodes);
|
298
299
|
assert.deepEqual(received.serialize().edges, graph.serialize().edges);
|
@@ -6,7 +6,7 @@ const {
|
|
6
6
|
EdgeTypeMap,
|
7
7
|
} = require('../../src/AdjacencyList');
|
8
8
|
|
9
|
-
parentPort.once('message',
|
9
|
+
parentPort.once('message', serialized => {
|
10
10
|
let graph = AdjacencyList.deserialize(serialized);
|
11
11
|
serialized.nodes.forEach((v, i) => {
|
12
12
|
if (i < NodeTypeMap.HEADER_SIZE) return;
|