@kapeta/local-cluster-service 0.20.0 → 0.20.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,3 +1,10 @@
|
|
1
|
+
## [0.20.1](https://github.com/kapetacom/local-cluster-service/compare/v0.20.0...v0.20.1) (2023-09-12)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* return realpaths for assets from assetManager ([7a1f315](https://github.com/kapetacom/local-cluster-service/commit/7a1f3159a8c54fda59ff57764d2b539016c091e4))
|
7
|
+
|
1
8
|
# [0.20.0](https://github.com/kapetacom/local-cluster-service/compare/v0.19.7...v0.20.0) (2023-09-10)
|
2
9
|
|
3
10
|
|
@@ -27,8 +27,8 @@ function enrichAsset(asset) {
|
|
27
27
|
version: asset.version,
|
28
28
|
kind: asset.definition.kind,
|
29
29
|
data: asset.definition,
|
30
|
-
path: asset.path,
|
31
|
-
ymlPath: asset.ymlPath,
|
30
|
+
path: fs_extra_1.default.realpathSync(asset.path),
|
31
|
+
ymlPath: fs_extra_1.default.realpathSync(asset.ymlPath),
|
32
32
|
};
|
33
33
|
}
|
34
34
|
function compareRefs(a, b) {
|
@@ -27,8 +27,8 @@ function enrichAsset(asset) {
|
|
27
27
|
version: asset.version,
|
28
28
|
kind: asset.definition.kind,
|
29
29
|
data: asset.definition,
|
30
|
-
path: asset.path,
|
31
|
-
ymlPath: asset.ymlPath,
|
30
|
+
path: fs_extra_1.default.realpathSync(asset.path),
|
31
|
+
ymlPath: fs_extra_1.default.realpathSync(asset.ymlPath),
|
32
32
|
};
|
33
33
|
}
|
34
34
|
function compareRefs(a, b) {
|
package/package.json
CHANGED
package/src/assetManager.ts
CHANGED
@@ -38,8 +38,8 @@ function enrichAsset(asset: DefinitionInfo): EnrichedAsset {
|
|
38
38
|
version: asset.version,
|
39
39
|
kind: asset.definition.kind,
|
40
40
|
data: asset.definition,
|
41
|
-
path: asset.path,
|
42
|
-
ymlPath: asset.ymlPath,
|
41
|
+
path: FS.realpathSync(asset.path),
|
42
|
+
ymlPath: FS.realpathSync(asset.ymlPath),
|
43
43
|
};
|
44
44
|
}
|
45
45
|
|