@cocreate/cli 1.13.8 → 1.13.10
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 +16 -0
- package/CoCreate.config.js +7 -23
- package/package.json +6 -4
- package/repositories.js +8 -66
- package/src/commands/fs/config.js +4 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [1.13.10](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.13.9...v1.13.10) (2022-11-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* apply src: {{source}} to CoCreate.config ([478da4f](https://github.com/CoCreate-app/CoCreate-cli/commit/478da4ff51eea812c589835d7cc31ca8889c45c3))
|
|
7
|
+
* removed duplicate repos ([012b68b](https://github.com/CoCreate-app/CoCreate-cli/commit/012b68b4b67de2bf43dd04196f9b1f13469c4e2f))
|
|
8
|
+
* replaced document_id with document._id ([f850009](https://github.com/CoCreate-app/CoCreate-cli/commit/f85000937c402017d273ca163ecdd63396e5139a))
|
|
9
|
+
|
|
10
|
+
## [1.13.9](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.13.8...v1.13.9) (2022-11-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* bump [@cocreate](https://github.com/cocreate) dependencies ([64286ed](https://github.com/CoCreate-app/CoCreate-cli/commit/64286ed8382fd12956bc48bb63bd70e4a50c79c1))
|
|
16
|
+
|
|
1
17
|
## [1.13.8](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.13.7...v1.13.8) (2022-11-21)
|
|
2
18
|
|
|
3
19
|
|
package/CoCreate.config.js
CHANGED
|
@@ -4,15 +4,15 @@ module.exports = {
|
|
|
4
4
|
"organization_id": "5ff747727005da1c272740ab",
|
|
5
5
|
"host": "general.cocreate.app"
|
|
6
6
|
},
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
"sources": [
|
|
8
|
+
{
|
|
9
9
|
"entry": "./docs/index.html",
|
|
10
10
|
"collection": "files",
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"data":{
|
|
11
|
+
"document": {
|
|
12
|
+
"_id": "637ca36250234ef1671ce30f",
|
|
14
13
|
"name": "index.html",
|
|
15
14
|
"path": "/docs/cli/index.html",
|
|
15
|
+
"src": "{{source}}",
|
|
16
16
|
"domains": [
|
|
17
17
|
"*",
|
|
18
18
|
"general.cocreate.app"
|
|
@@ -23,21 +23,5 @@ module.exports = {
|
|
|
23
23
|
"website_id": "5ffbceb7f11d2d00103c4535"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
]
|
|
27
|
-
|
|
28
|
-
"extract": {
|
|
29
|
-
"directory": "./src/",
|
|
30
|
-
"extensions": [
|
|
31
|
-
"js",
|
|
32
|
-
"css",
|
|
33
|
-
"html"
|
|
34
|
-
],
|
|
35
|
-
"ignores": [
|
|
36
|
-
"node_modules",
|
|
37
|
-
"vendor",
|
|
38
|
-
"bower_components",
|
|
39
|
-
"archive"
|
|
40
|
-
]
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
26
|
+
]
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.10",
|
|
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",
|
|
@@ -35,7 +35,9 @@
|
|
|
35
35
|
"readme": "nodejs src/commands/fs/readme.js",
|
|
36
36
|
"remove": "nodejs src/commands/remove.js",
|
|
37
37
|
"replace": "nodejs src/commands/replace.js",
|
|
38
|
-
"webpack": "nodejs src/commands/fs/webpack.js"
|
|
38
|
+
"webpack": "nodejs src/commands/fs/webpack.js",
|
|
39
|
+
"docs": "node ./node_modules/@cocreate/docs/src/index.js",
|
|
40
|
+
"hosting": "node ./node_modules/@cocreate/hosting/src/index.js"
|
|
39
41
|
},
|
|
40
42
|
"repository": {
|
|
41
43
|
"type": "git",
|
|
@@ -71,8 +73,8 @@
|
|
|
71
73
|
"webpack-log": "^3.0.1"
|
|
72
74
|
},
|
|
73
75
|
"dependencies": {
|
|
74
|
-
"@cocreate/docs": "^1.3.
|
|
75
|
-
"@cocreate/hosting": "^1.4.
|
|
76
|
+
"@cocreate/docs": "^1.3.21",
|
|
77
|
+
"@cocreate/hosting": "^1.4.4",
|
|
76
78
|
"colors": "latest",
|
|
77
79
|
"glob": "^7.1.7",
|
|
78
80
|
"got": "latest",
|
package/repositories.js
CHANGED
|
@@ -8,10 +8,10 @@ module.exports = [
|
|
|
8
8
|
'path': '/home/ubuntu/CoCreateServer/CoCreateCSS',
|
|
9
9
|
'repo': 'github.com/CoCreate-app/CoCreateCSS.git'
|
|
10
10
|
},
|
|
11
|
-
{
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
},
|
|
11
|
+
// {
|
|
12
|
+
// 'path': '/home/ubuntu/CoCreateServer/CoCreate-admin',
|
|
13
|
+
// 'repo': 'github.com/CoCreate-app/CoCreate-admin.git'
|
|
14
|
+
// },
|
|
15
15
|
{
|
|
16
16
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-website',
|
|
17
17
|
'repo': 'github.com/CoCreate-app/CoCreate-website.git'
|
|
@@ -78,6 +78,10 @@ module.exports = [
|
|
|
78
78
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-elements',
|
|
79
79
|
'repo': 'github.com/CoCreate-app/CoCreate-elements.git'
|
|
80
80
|
},
|
|
81
|
+
{
|
|
82
|
+
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-element-prototype',
|
|
83
|
+
'repo': 'github.com/CoCreate-app/CoCreate-element-prototype.git'
|
|
84
|
+
},
|
|
81
85
|
{
|
|
82
86
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-fetch',
|
|
83
87
|
'repo': 'github.com/CoCreate-app/CoCreate-fetch.git'
|
|
@@ -465,68 +469,6 @@ module.exports = [
|
|
|
465
469
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-socket-server',
|
|
466
470
|
'repo': 'github.com/CoCreate-app/CoCreate-socket-server.git'
|
|
467
471
|
},
|
|
468
|
-
{
|
|
469
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-actions',
|
|
470
|
-
'repo': 'github.com/CoCreate-app/CoCreate-actions.git'
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-api',
|
|
474
|
-
'repo': 'github.com/CoCreate-app/CoCreate-api.git'
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-docs',
|
|
478
|
-
'repo': 'github.com/CoCreate-app/CoCreate-docs.git'
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-hosting',
|
|
482
|
-
'repo': 'github.com/CoCreate-app/CoCreate-hosting.git'
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-crud-client',
|
|
486
|
-
'repo': 'github.com/CoCreate-app/CoCreate-crud-client.git'
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-elements',
|
|
490
|
-
'repo': 'github.com/CoCreate-app/CoCreate-elements.git'
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-industry',
|
|
494
|
-
'repo': 'github.com/CoCreate-app/CoCreate-industry.git'
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-observer',
|
|
498
|
-
'repo': 'github.com/CoCreate-app/CoCreate-observer.git'
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-organizations',
|
|
502
|
-
'repo': 'github.com/CoCreate-app/CoCreate-organizations.git'
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-render',
|
|
506
|
-
'repo': 'github.com/CoCreate-app/CoCreate-render.git'
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-socket-client',
|
|
510
|
-
'repo': 'github.com/CoCreate-app/CoCreate-socket-client.git'
|
|
511
|
-
},
|
|
512
|
-
{
|
|
513
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-unique',
|
|
514
|
-
'repo': 'github.com/CoCreate-app/CoCreate-unique.git'
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-users',
|
|
518
|
-
'repo': 'github.com/CoCreate-app/CoCreate-users.git'
|
|
519
|
-
},
|
|
520
|
-
{
|
|
521
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-utils',
|
|
522
|
-
'repo': 'github.com/CoCreate-app/CoCreate-utils.git'
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-uuid',
|
|
526
|
-
'repo': 'github.com/CoCreate-app/CoCreate-uuid.git'
|
|
527
|
-
},
|
|
528
|
-
|
|
529
|
-
|
|
530
472
|
|
|
531
473
|
// Maybe depreciated
|
|
532
474
|
{
|
|
@@ -35,11 +35,11 @@ function update(MdPath) {
|
|
|
35
35
|
"sources": [{
|
|
36
36
|
"entry": "./docs/index.html",
|
|
37
37
|
"collection": "files",
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
"data":{
|
|
38
|
+
"document": {
|
|
39
|
+
"_id": "${document_id}",
|
|
41
40
|
"name": "index.html",
|
|
42
41
|
"path": "/docs/${name}/index.html",
|
|
42
|
+
"src": "{{source}}",
|
|
43
43
|
"domains": [
|
|
44
44
|
"general.cocreate.app"
|
|
45
45
|
],
|
|
@@ -49,22 +49,7 @@ function update(MdPath) {
|
|
|
49
49
|
"website_id": "5ffbceb7f11d2d00103c4535"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
|
-
]
|
|
53
|
-
|
|
54
|
-
"extract": {
|
|
55
|
-
"directory": "./src/",
|
|
56
|
-
"extensions": [
|
|
57
|
-
"js",
|
|
58
|
-
"css",
|
|
59
|
-
"html"
|
|
60
|
-
],
|
|
61
|
-
"ignores": [
|
|
62
|
-
"node_modules",
|
|
63
|
-
"vendor",
|
|
64
|
-
"bower_components",
|
|
65
|
-
"archive"
|
|
66
|
-
]
|
|
67
|
-
}
|
|
52
|
+
]
|
|
68
53
|
}
|
|
69
54
|
|
|
70
55
|
`;
|