@cocreate/config 1.12.0 → 1.12.2
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 +14 -0
- package/docs/index.html +0 -5
- package/package.json +1 -1
- package/src/server.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.12.2](https://github.com/CoCreate-app/CoCreate-config/compare/v1.12.1...v1.12.2) (2024-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([848fb18](https://github.com/CoCreate-app/CoCreate-config/commit/848fb188578b677f7c8bd417e6e607dafce42837))
|
|
7
|
+
|
|
8
|
+
## [1.12.1](https://github.com/CoCreate-app/CoCreate-config/compare/v1.12.0...v1.12.1) (2024-01-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* removed test logs ([5956d42](https://github.com/CoCreate-app/CoCreate-config/commit/5956d42fa2b5c1d13a5ab8c45bc5397e50d0e947))
|
|
14
|
+
|
|
1
15
|
# [1.12.0](https://github.com/CoCreate-app/CoCreate-config/compare/v1.11.0...v1.12.0) (2024-01-09)
|
|
2
16
|
|
|
3
17
|
|
package/docs/index.html
CHANGED
|
@@ -21,11 +21,6 @@
|
|
|
21
21
|
property="og:image"
|
|
22
22
|
content="https://cdn.cocreate.app/docs/config.png" />
|
|
23
23
|
|
|
24
|
-
<!-- CoCreate CSS -->
|
|
25
|
-
<link
|
|
26
|
-
rel="stylesheet"
|
|
27
|
-
href="https://cdn.cocreate.app/latest/CoCreate.min.css"
|
|
28
|
-
type="text/css" />
|
|
29
24
|
<link
|
|
30
25
|
rel="stylesheet"
|
|
31
26
|
href="../index.css"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/config",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
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)
|