@cocreate/cli 1.43.0 → 1.44.0
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 +13 -0
- package/CoCreate.config.js +2 -2
- package/docs/index.html +8 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [1.44.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.43.0...v1.44.0) (2023-11-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* pass attributes renamed to state ([b0cc9f6](https://github.com/CoCreate-app/CoCreate-cli/commit/b0cc9f6f935d7b6467d02dfdd5d0a75b3b9ddac6))
|
|
7
|
+
* update nav, edit button and css path ([30420e6](https://github.com/CoCreate-app/CoCreate-cli/commit/30420e6f7f227038ec726a19943565bbfee5aebf))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* upgrade dependencies for latest features and fixes ([8459d64](https://github.com/CoCreate-app/CoCreate-cli/commit/8459d64841d404893d45062c70836fb81a5a85b6))
|
|
13
|
+
|
|
1
14
|
# [1.43.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.42.9...v1.43.0) (2023-11-19)
|
|
2
15
|
|
|
3
16
|
|
package/CoCreate.config.js
CHANGED
|
@@ -174,8 +174,8 @@ module.exports = {
|
|
|
174
174
|
"repo": "github.com/CoCreate-app/CoCreate-parallax.git"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
|
-
"path": "../CoCreate-
|
|
178
|
-
"repo": "github.com/CoCreate-app/CoCreate-
|
|
177
|
+
"path": "../CoCreate-state",
|
|
178
|
+
"repo": "github.com/CoCreate-app/CoCreate-state.git"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "../CoCreate-position",
|
package/docs/index.html
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
<link
|
|
22
22
|
rel="stylesheet"
|
|
23
|
-
href="
|
|
23
|
+
href="../index.css"
|
|
24
24
|
array="files"
|
|
25
25
|
object="60888216117c640e7596303f"
|
|
26
26
|
key="src"
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
</head>
|
|
32
32
|
|
|
33
33
|
<body>
|
|
34
|
+
<!-- Navbar -->
|
|
34
35
|
<nav
|
|
35
|
-
class="
|
|
36
|
+
class="width:100% display:flex align-items:center background:transparent padding-top:10px padding-bottom:10px"
|
|
36
37
|
content_id="content"
|
|
37
|
-
scroll="sticky-nav,
|
|
38
|
-
scroll-up="
|
|
39
|
-
scroll-down="
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
key="src"></nav>
|
|
38
|
+
scroll="sticky-nav,"
|
|
39
|
+
scroll-up="5"
|
|
40
|
+
scroll-down="5"
|
|
41
|
+
path="../"
|
|
42
|
+
src="../components/navbar.html"></nav>
|
|
43
43
|
<sidenav
|
|
44
44
|
id="menuL"
|
|
45
45
|
class="position:fixed top:0px left:0px overflow:hidden background:whitesmoke height:100vh width:0px width:300px@xl"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0",
|
|
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.
|
|
59
|
-
"@cocreate/file": "^1.
|
|
58
|
+
"@cocreate/config": "^1.7.0",
|
|
59
|
+
"@cocreate/file": "^1.12.0",
|
|
60
60
|
"glob": "^7.1.7",
|
|
61
61
|
"prettier": "^2.3.2"
|
|
62
62
|
}
|