@siteimprove/alfa-map 0.114.2 → 0.114.3

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @siteimprove/alfa-map
2
2
 
3
+ ## 0.114.3
4
+
5
+ ### Patch Changes
6
+
7
+ - **Changed:** Internal overhaul of the code structure with no outside impact. ([`6371d0a`](https://github.com/Siteimprove/alfa/commit/6371d0a1ad09fc5260c05e4b43c90efdfb86b87d))
8
+
3
9
  ## 0.114.2
4
10
 
5
11
  ## 0.114.1
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from "./map.js";
2
- export * from "./node.js";
1
+ export * from "./map.ts";
2
+ export * from "./node.ts";
3
3
  //# sourceMappingURL=index.d.ts.map
package/dist/map.d.ts CHANGED
@@ -9,7 +9,7 @@ import type { Option } from "@siteimprove/alfa-option";
9
9
  import { Predicate } from "@siteimprove/alfa-predicate";
10
10
  import type { Reducer } from "@siteimprove/alfa-reducer";
11
11
  import type { Refinement } from "@siteimprove/alfa-refinement";
12
- import type { Node } from "./node.js";
12
+ import type { Node } from "./node.ts";
13
13
  /**
14
14
  * @public
15
15
  */
package/dist/node.d.ts CHANGED
@@ -3,7 +3,7 @@ import type { Functor } from "@siteimprove/alfa-functor";
3
3
  import type { Iterable } from "@siteimprove/alfa-iterable";
4
4
  import type { Mapper } from "@siteimprove/alfa-mapper";
5
5
  import { Option } from "@siteimprove/alfa-option";
6
- import { Status } from "./status.js";
6
+ import { Status } from "./status.ts";
7
7
  /**
8
8
  * Maps are stored as an hash-table of keys.
9
9
  * The hash-table is stored as a tree where each internal node is a partial
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/package",
3
3
  "name": "@siteimprove/alfa-map",
4
4
  "homepage": "https://alfa.siteimprove.com",
5
- "version": "0.114.2",
5
+ "version": "0.114.3",
6
6
  "license": "MIT",
7
7
  "description": "An implementation of an immutable map structure, based on a hash array mapped trie",
8
8
  "repository": {
@@ -22,25 +22,25 @@
22
22
  "dist/**/*.d.ts"
23
23
  ],
24
24
  "dependencies": {
25
- "@siteimprove/alfa-array": "^0.114.2",
26
- "@siteimprove/alfa-bits": "^0.114.2",
27
- "@siteimprove/alfa-callback": "^0.114.2",
28
- "@siteimprove/alfa-collection": "^0.114.2",
29
- "@siteimprove/alfa-equatable": "^0.114.2",
30
- "@siteimprove/alfa-fnv": "^0.114.2",
31
- "@siteimprove/alfa-functor": "^0.114.2",
32
- "@siteimprove/alfa-hash": "^0.114.2",
33
- "@siteimprove/alfa-iterable": "^0.114.2",
34
- "@siteimprove/alfa-json": "^0.114.2",
35
- "@siteimprove/alfa-mapper": "^0.114.2",
36
- "@siteimprove/alfa-option": "^0.114.2",
37
- "@siteimprove/alfa-predicate": "^0.114.2",
38
- "@siteimprove/alfa-reducer": "^0.114.2",
39
- "@siteimprove/alfa-refinement": "^0.114.2"
25
+ "@siteimprove/alfa-array": "^0.114.3",
26
+ "@siteimprove/alfa-bits": "^0.114.3",
27
+ "@siteimprove/alfa-callback": "^0.114.3",
28
+ "@siteimprove/alfa-collection": "^0.114.3",
29
+ "@siteimprove/alfa-equatable": "^0.114.3",
30
+ "@siteimprove/alfa-fnv": "^0.114.3",
31
+ "@siteimprove/alfa-functor": "^0.114.3",
32
+ "@siteimprove/alfa-hash": "^0.114.3",
33
+ "@siteimprove/alfa-iterable": "^0.114.3",
34
+ "@siteimprove/alfa-json": "^0.114.3",
35
+ "@siteimprove/alfa-mapper": "^0.114.3",
36
+ "@siteimprove/alfa-option": "^0.114.3",
37
+ "@siteimprove/alfa-predicate": "^0.114.3",
38
+ "@siteimprove/alfa-reducer": "^0.114.3",
39
+ "@siteimprove/alfa-refinement": "^0.114.3"
40
40
  },
41
41
  "devDependencies": {
42
- "@siteimprove/alfa-rng": "^0.114.2",
43
- "@siteimprove/alfa-test": "^0.114.2"
42
+ "@siteimprove/alfa-rng": "^0.114.3",
43
+ "@siteimprove/alfa-test": "^0.114.3"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public",