@equinor/fusion-framework-cli 12.3.1 → 12.3.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 +26 -0
- package/bin/build/bin.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 12.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @equinor/fusion-framework-dev-server@1.1.6
|
|
9
|
+
- @equinor/fusion-framework-dev-portal@1.2.2
|
|
10
|
+
|
|
11
|
+
## 12.3.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#3574](https://github.com/equinor/fusion-framework/pull/3574) [`39e989f`](https://github.com/equinor/fusion-framework/commit/39e989f6ab477047d82740b2d96b757c90b10f74) Thanks [@Noggling](https://github.com/Noggling)! - Fix app development error by adding missing `is-mergeable-object` dependency
|
|
16
|
+
|
|
17
|
+
Added `is-mergeable-object` as a direct dependency to resolve runtime errors when using the CLI's app development features. This package is required by `deepmerge` but was not explicitly declared as a dependency, causing module resolution failures during app development.
|
|
18
|
+
|
|
19
|
+
**Changes:**
|
|
20
|
+
|
|
21
|
+
- Added `is-mergeable-object@^1.1.1` to dependencies in `packages/cli/package.json`
|
|
22
|
+
|
|
23
|
+
**Impact:**
|
|
24
|
+
|
|
25
|
+
- Fixes "Cannot find module 'is-mergeable-object'" errors during app development
|
|
26
|
+
- Ensures proper dependency resolution for CLI tools that use deepmerge functionality
|
|
27
|
+
- No breaking changes - this is purely a dependency fix
|
|
28
|
+
|
|
3
29
|
## 12.3.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|