@adobe/helix-config 3.9.2 → 3.9.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 +7 -0
- package/package.json +1 -1
- package/src/config-merge.js +1 -0
- package/src/storage/config-store.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.9.3](https://github.com/adobe/helix-config/compare/v3.9.2...v3.9.3) (2024-07-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* trigger release ([404ad83](https://github.com/adobe/helix-config/commit/404ad83057921ad5ada86873696ab8e031c4c037))
|
|
7
|
+
|
|
1
8
|
## [3.9.2](https://github.com/adobe/helix-config/compare/v3.9.1...v3.9.2) (2024-07-22)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/config-merge.js
CHANGED
|
@@ -218,8 +218,10 @@ export class ConfigStore {
|
|
|
218
218
|
[this.type]: list.map((entry) => {
|
|
219
219
|
const siteKey = entry.key;
|
|
220
220
|
if (siteKey.endsWith('.json')) {
|
|
221
|
+
const name = siteKey.split('/').pop();
|
|
221
222
|
return {
|
|
222
|
-
|
|
223
|
+
path: `/config/${this.org}/${this.type}/${name}`,
|
|
224
|
+
name: name.substring(0, name.length - 5),
|
|
223
225
|
};
|
|
224
226
|
}
|
|
225
227
|
return null;
|