@cocreate/cli 1.42.6 → 1.42.8
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 +15 -0
- package/CoCreate.config.js +4 -0
- package/docs/index.html +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.42.8](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.7...v1.42.8) (2023-11-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* meta name typo ([430a697](https://github.com/CoCreate-app/CoCreate-cli/commit/430a6978abf2664b7740bc47fc912d85f6d66414))
|
|
7
|
+
|
|
8
|
+
## [1.42.7](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.6...v1.42.7) (2023-11-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* added CoCreate-cache ([0245307](https://github.com/CoCreate-app/CoCreate-cli/commit/024530704bf3c648082bd2556517b24f01d69c22))
|
|
14
|
+
* update dependencies to the lates versions ([1b1695d](https://github.com/CoCreate-app/CoCreate-cli/commit/1b1695dcf2602eba937dbf036d8d5430718a29ec))
|
|
15
|
+
|
|
1
16
|
## [1.42.6](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.5...v1.42.6) (2023-10-25)
|
|
2
17
|
|
|
3
18
|
|
package/CoCreate.config.js
CHANGED
|
@@ -49,6 +49,10 @@ module.exports = {
|
|
|
49
49
|
"path": "../CoCreate-attributes",
|
|
50
50
|
"repo": "github.com/CoCreate-app/CoCreate-attributes.git"
|
|
51
51
|
},
|
|
52
|
+
{
|
|
53
|
+
"path": "../CoCreate-cache",
|
|
54
|
+
"repo": "github.com/CoCreate-app/CoCreate-cache.git"
|
|
55
|
+
},
|
|
52
56
|
{
|
|
53
57
|
"path": "../CoCreate-calculation",
|
|
54
58
|
"repo": "github.com/CoCreate-app/CoCreate-calculation.git"
|
package/docs/index.html
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
sizes="32x32"
|
|
12
12
|
href="https://cocreate.app/images/favicon.ico" />
|
|
13
13
|
<meta
|
|
14
|
-
|
|
14
|
+
name="description"
|
|
15
15
|
content="A simple HTML5 and pure javascript component. Easy configuration using HTML5 attributes or Javscript api and highly styleable." />
|
|
16
16
|
<meta
|
|
17
|
-
|
|
17
|
+
name="keywords"
|
|
18
18
|
content="helper classes, utility classes, css framework, css library, inline style classes" />
|
|
19
19
|
<meta name="robots" content="index,follow" />
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.42.
|
|
3
|
+
"version": "1.42.8",
|
|
4
4
|
"description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"coc": "src/coc.js"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@cocreate/config": "^1.6.
|
|
59
|
-
"@cocreate/file": "^1.9.
|
|
58
|
+
"@cocreate/config": "^1.6.6",
|
|
59
|
+
"@cocreate/file": "^1.9.9",
|
|
60
60
|
"glob": "^7.1.7",
|
|
61
61
|
"prettier": "^2.3.2"
|
|
62
62
|
}
|