@cocreate/config 1.0.4 → 1.0.6

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,17 @@
1
+ ## [1.0.6](https://github.com/CoCreate-app/CoCreate-config/compare/v1.0.5...v1.0.6) (2023-06-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * return config after dotNotationToObject ([97f0e63](https://github.com/CoCreate-app/CoCreate-config/commit/97f0e633f05d502dac7f88bb0deb216ac5143374))
7
+
8
+ ## [1.0.5](https://github.com/CoCreate-app/CoCreate-config/compare/v1.0.4...v1.0.5) (2023-06-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([12ae9f6](https://github.com/CoCreate-app/CoCreate-config/commit/12ae9f6c249f3fedd719597e772ac7bf6a6d2ea7))
14
+
1
15
  ## [1.0.4](https://github.com/CoCreate-app/CoCreate-config/compare/v1.0.3...v1.0.4) (2023-06-14)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/config",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "A convenient chain handler allows user to chain multiple CoCreate components together. When one action is complete next one will start. The sequence goes untill all config completed. Grounded on Vanilla javascript, easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "config",
package/src/server.js CHANGED
@@ -117,5 +117,5 @@ module.exports = async function (items, env = true, global = true) {
117
117
  };
118
118
  }
119
119
 
120
- return config;
120
+ return dotNotationToObject(config);
121
121
  }