@siteimprove/alfa-option 0.114.1 → 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,13 @@
1
1
  # @siteimprove/alfa-option
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
+
9
+ ## 0.114.2
10
+
3
11
  ## 0.114.1
4
12
 
5
13
  ## 0.114.0
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from "./maybe.js";
2
- export * from "./none.js";
3
- export * from "./option.js";
4
- export * from "./some.js";
1
+ export * from "./maybe.ts";
2
+ export * from "./none.ts";
3
+ export * from "./option.ts";
4
+ export * from "./some.ts";
5
5
  //# sourceMappingURL=index.d.ts.map
package/dist/maybe.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Option } from "./option.js";
1
+ import { Option } from "./option.ts";
2
2
  /**
3
3
  * @remarks
4
4
  * Should only be used when it's not possible or practical to use `Option<T>`
package/dist/none.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type * as json from "@siteimprove/alfa-json";
2
- import type { Option } from "./option.js";
2
+ import type { Option } from "./option.ts";
3
3
  /**
4
4
  * @public
5
5
  */
package/dist/option.d.ts CHANGED
@@ -11,8 +11,8 @@ import type { Predicate } from "@siteimprove/alfa-predicate";
11
11
  import type { Reducer } from "@siteimprove/alfa-reducer";
12
12
  import type { Refinement } from "@siteimprove/alfa-refinement";
13
13
  import type { Thunk } from "@siteimprove/alfa-thunk";
14
- import { None } from "./none.js";
15
- import { Some } from "./some.js";
14
+ import { None } from "./none.ts";
15
+ import { Some } from "./some.ts";
16
16
  /**
17
17
  * @public
18
18
  */
package/dist/some.d.ts CHANGED
@@ -7,8 +7,8 @@ import { Predicate } from "@siteimprove/alfa-predicate";
7
7
  import type { Reducer } from "@siteimprove/alfa-reducer";
8
8
  import type { Refinement } from "@siteimprove/alfa-refinement";
9
9
  import type * as json from "@siteimprove/alfa-json";
10
- import type { Option } from "./option.js";
11
- import { None } from "./none.js";
10
+ import type { Option } from "./option.ts";
11
+ import { None } from "./none.ts";
12
12
  /**
13
13
  * @public
14
14
  */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/package",
3
3
  "name": "@siteimprove/alfa-option",
4
4
  "homepage": "https://alfa.siteimprove.com",
5
- "version": "0.114.1",
5
+ "version": "0.114.3",
6
6
  "license": "MIT",
7
7
  "description": "An implementation of optional values, which are values that may or may not be present",
8
8
  "repository": {
@@ -22,21 +22,21 @@
22
22
  "dist/**/*.d.ts"
23
23
  ],
24
24
  "dependencies": {
25
- "@siteimprove/alfa-callback": "^0.114.1",
26
- "@siteimprove/alfa-comparable": "^0.114.1",
27
- "@siteimprove/alfa-equatable": "^0.114.1",
28
- "@siteimprove/alfa-foldable": "^0.114.1",
29
- "@siteimprove/alfa-hash": "^0.114.1",
30
- "@siteimprove/alfa-json": "^0.114.1",
31
- "@siteimprove/alfa-mapper": "^0.114.1",
32
- "@siteimprove/alfa-monad": "^0.114.1",
33
- "@siteimprove/alfa-predicate": "^0.114.1",
34
- "@siteimprove/alfa-reducer": "^0.114.1",
35
- "@siteimprove/alfa-refinement": "^0.114.1",
36
- "@siteimprove/alfa-thunk": "^0.114.1"
25
+ "@siteimprove/alfa-callback": "^0.114.3",
26
+ "@siteimprove/alfa-comparable": "^0.114.3",
27
+ "@siteimprove/alfa-equatable": "^0.114.3",
28
+ "@siteimprove/alfa-foldable": "^0.114.3",
29
+ "@siteimprove/alfa-hash": "^0.114.3",
30
+ "@siteimprove/alfa-json": "^0.114.3",
31
+ "@siteimprove/alfa-mapper": "^0.114.3",
32
+ "@siteimprove/alfa-monad": "^0.114.3",
33
+ "@siteimprove/alfa-predicate": "^0.114.3",
34
+ "@siteimprove/alfa-reducer": "^0.114.3",
35
+ "@siteimprove/alfa-refinement": "^0.114.3",
36
+ "@siteimprove/alfa-thunk": "^0.114.3"
37
37
  },
38
38
  "devDependencies": {
39
- "@siteimprove/alfa-test": "^0.114.1"
39
+ "@siteimprove/alfa-test": "^0.114.3"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public",