@atlaspack/graph 3.2.1-dev.3478 → 3.2.1-dev.3502

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.
@@ -87,10 +87,9 @@ const MAX_LINK_TRIES = 3;
87
87
  *
88
88
  */
89
89
  class AdjacencyList {
90
- #nodes /*: NodeTypeMap<TEdgeType | NullEdgeType> */;
91
- #edges /*: EdgeTypeMap<TEdgeType | NullEdgeType> */;
92
-
93
- #params /*: AdjacencyListParams */;
90
+ #nodes;
91
+ #edges;
92
+ #params;
94
93
 
95
94
  /**
96
95
  * Create a new `AdjacencyList` in one of two ways:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/graph",
3
- "version": "3.2.1-dev.3478+5fd2da535",
3
+ "version": "3.2.1-dev.3502+c2daeab5a",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -16,8 +16,8 @@
16
16
  "node": ">= 16.0.0"
17
17
  },
18
18
  "dependencies": {
19
- "@atlaspack/feature-flags": "2.12.1-dev.3478+5fd2da535",
19
+ "@atlaspack/feature-flags": "2.12.1-dev.3502+c2daeab5a",
20
20
  "nullthrows": "^1.1.1"
21
21
  },
22
- "gitHead": "5fd2da535ecbe096d57e03aec15e80bb1d7601f7"
22
+ "gitHead": "c2daeab5a12461903159dec34df5671eaaa9b749"
23
23
  }
@@ -117,10 +117,10 @@ const MAX_LINK_TRIES: 3 = 3;
117
117
  *
118
118
  */
119
119
  export default class AdjacencyList<TEdgeType: number = 1> {
120
- #nodes /*: NodeTypeMap<TEdgeType | NullEdgeType> */;
121
- #edges /*: EdgeTypeMap<TEdgeType | NullEdgeType> */;
120
+ #nodes: NodeTypeMap<TEdgeType | NullEdgeType>;
121
+ #edges: EdgeTypeMap<TEdgeType | NullEdgeType>;
122
122
 
123
- #params /*: AdjacencyListParams */;
123
+ #params: AdjacencyListParams;
124
124
 
125
125
  /**
126
126
  * Create a new `AdjacencyList` in one of two ways: