@equinor/fusion-framework-module-widget 5.0.1 → 6.0.1
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,69 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`736ef31`](https://github.com/equinor/fusion-framework/commit/736ef310ee101738f9022d581a2b3189b30a2646)]:
|
|
8
|
+
- @equinor/fusion-framework-module-event@4.2.1
|
|
9
|
+
|
|
10
|
+
## 6.0.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [#2333](https://github.com/equinor/fusion-framework/pull/2333) [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1) Thanks [@odinr](https://github.com/odinr)! - Updated `TypeScript` to 5.5.3
|
|
15
|
+
|
|
16
|
+
- [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
|
|
17
|
+
|
|
18
|
+
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
19
|
+
|
|
20
|
+
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
21
|
+
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
22
|
+
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
23
|
+
|
|
24
|
+
No action is required from consumers of the library. This change affects the build process and doesn't introduce any breaking changes or new features.
|
|
25
|
+
|
|
26
|
+
Before:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"compilerOptions": {
|
|
31
|
+
"module": "ES2022",
|
|
32
|
+
"target": "ES6",
|
|
33
|
+
"incremental": true,
|
|
34
|
+
"removeComments": true,
|
|
35
|
+
"preserveConstEnums": true,
|
|
36
|
+
"sourceMap": true,
|
|
37
|
+
"moduleResolution": "node"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
After:
|
|
43
|
+
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"compilerOptions": {
|
|
47
|
+
"module": "ES2022",
|
|
48
|
+
"target": "ES6",
|
|
49
|
+
"incremental": true,
|
|
50
|
+
"preserveConstEnums": true,
|
|
51
|
+
"sourceMap": true,
|
|
52
|
+
"moduleResolution": "node"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [[`2f74edc`](https://github.com/equinor/fusion-framework/commit/2f74edcd4a3ea2b87d69f0fd63492145c3c01663), [`5e20ce1`](https://github.com/equinor/fusion-framework/commit/5e20ce17af709f0443b7110bfc952ff8d8d81dee), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`b628e90`](https://github.com/equinor/fusion-framework/commit/b628e90500b62e0185c09eb665ce31025bc9b541), [`29ff796`](https://github.com/equinor/fusion-framework/commit/29ff796ebb3a643c604e4153b6798bde5992363c), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee), [`5e20ce1`](https://github.com/equinor/fusion-framework/commit/5e20ce17af709f0443b7110bfc952ff8d8d81dee)]:
|
|
60
|
+
- @equinor/fusion-framework-module@4.3.2
|
|
61
|
+
- @equinor/fusion-query@5.1.0
|
|
62
|
+
- @equinor/fusion-framework-module-http@6.0.1
|
|
63
|
+
- @equinor/fusion-framework-module-service-discovery@7.1.10
|
|
64
|
+
- @equinor/fusion-observable@8.3.3
|
|
65
|
+
- @equinor/fusion-framework-module-event@4.2.0
|
|
66
|
+
|
|
3
67
|
## 5.0.1
|
|
4
68
|
|
|
5
69
|
### Patch Changes
|
package/dist/esm/version.js
CHANGED