@parcel/graph 3.2.1-canary.3201 → 3.2.1-canary.3203

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.3201+5230589a7",
3
+ "version": "3.2.1-canary.3203+f5f0bb489",
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.3201+5230589a7",
23
+ "@parcel/feature-flags": "2.12.1-canary.3203+f5f0bb489",
24
24
  "nullthrows": "^1.1.1"
25
25
  },
26
- "gitHead": "5230589a742352c16ccc59ef9de30ad42c012783"
26
+ "gitHead": "f5f0bb489c0da47e57cba88da554802ca2b832e1"
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
- await worker.terminate();
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', (serialized) => {
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;