@siteimprove/alfa-network 0.97.0 → 0.99.0
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/CHANGELOG.md +8 -0
- package/dist/network.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @siteimprove/alfa-network
|
|
2
2
|
|
|
3
|
+
## 0.99.0
|
|
4
|
+
|
|
5
|
+
## 0.98.0
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- **Changed:** Classes that do not implement the Singleton pattern now have `protected` constructor and can be extended. ([#1735](https://github.com/Siteimprove/alfa/pull/1735))
|
|
10
|
+
|
|
3
11
|
## 0.97.0
|
|
4
12
|
|
|
5
13
|
## 0.96.0
|
package/dist/network.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class Network<N, E> implements Iterable<[N, Iterable<[N, Iterable
|
|
|
14
14
|
private static _empty;
|
|
15
15
|
static empty<N, E>(): Network<N, E>;
|
|
16
16
|
private readonly _nodes;
|
|
17
|
-
|
|
17
|
+
protected constructor(nodes: Map<N, Map<N, Set<E>>>);
|
|
18
18
|
get size(): number;
|
|
19
19
|
isEmpty(): this is Network<N, never>;
|
|
20
20
|
nodes(): Iterable<N>;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/package",
|
|
3
3
|
"name": "@siteimprove/alfa-network",
|
|
4
4
|
"homepage": "https://alfa.siteimprove.com",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.99.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "An implementation of an immutable, directed graph that allows for multiple, unique edges",
|
|
8
8
|
"repository": {
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"dist/**/*.d.ts"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@siteimprove/alfa-equatable": "^0.
|
|
26
|
-
"@siteimprove/alfa-graph": "^0.
|
|
27
|
-
"@siteimprove/alfa-hash": "^0.
|
|
28
|
-
"@siteimprove/alfa-iterable": "^0.
|
|
29
|
-
"@siteimprove/alfa-json": "^0.
|
|
30
|
-
"@siteimprove/alfa-map": "^0.
|
|
31
|
-
"@siteimprove/alfa-sequence": "^0.
|
|
32
|
-
"@siteimprove/alfa-set": "^0.
|
|
25
|
+
"@siteimprove/alfa-equatable": "^0.99.0",
|
|
26
|
+
"@siteimprove/alfa-graph": "^0.99.0",
|
|
27
|
+
"@siteimprove/alfa-hash": "^0.99.0",
|
|
28
|
+
"@siteimprove/alfa-iterable": "^0.99.0",
|
|
29
|
+
"@siteimprove/alfa-json": "^0.99.0",
|
|
30
|
+
"@siteimprove/alfa-map": "^0.99.0",
|
|
31
|
+
"@siteimprove/alfa-sequence": "^0.99.0",
|
|
32
|
+
"@siteimprove/alfa-set": "^0.99.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@siteimprove/alfa-test": "^0.
|
|
35
|
+
"@siteimprove/alfa-test": "^0.99.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public",
|