@parcel/graph 3.2.1-dev.3187 → 3.2.1-dev.3188

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/Graph.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/graph",
3
- "version": "3.2.1-dev.3187+f88048a4b",
3
+ "version": "3.2.1-dev.3188+c422b7ff3",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -22,5 +22,5 @@
22
22
  "dependencies": {
23
23
  "nullthrows": "^1.1.1"
24
24
  },
25
- "gitHead": "f88048a4b5e7b0d65ea484365b568ad423a8bf45"
25
+ "gitHead": "c422b7ff3c383779781ea5169d86191508b01e5b"
26
26
  }
package/src/Graph.js CHANGED
@@ -49,7 +49,7 @@ type DFSCommand<TContext> =
49
49
  /**
50
50
  * Options for DFS traversal.
51
51
  */
52
- type DFSParams<TContext> = {|
52
+ export type DFSParams<TContext> = {|
53
53
  visit: GraphVisitor<NodeId, TContext>,
54
54
  /**
55
55
  * Custom function to get next entries to visit.