@cocreate/config 1.12.0 → 1.12.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
+ ## [1.12.1](https://github.com/CoCreate-app/CoCreate-config/compare/v1.12.0...v1.12.1) (2024-01-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * removed test logs ([5956d42](https://github.com/CoCreate-app/CoCreate-config/commit/5956d42fa2b5c1d13a5ab8c45bc5397e50d0e947))
7
+
1
8
  # [1.12.0](https://github.com/CoCreate-app/CoCreate-config/compare/v1.11.0...v1.12.0) (2024-01-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/config",
3
- "version": "1.12.0",
3
+ "version": "1.12.1",
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
@@ -142,9 +142,6 @@ module.exports = async function (items, env = true, global = true, configPath =
142
142
  variables[`{{${variable}}}`] = Object.keys(variableValue)[0]
143
143
  }
144
144
  } else {
145
- if (key === 'host')
146
- console.log(key)
147
-
148
145
  if (value || value === "") {
149
146
  config[key] = value;
150
147
  if (global)