@cocreate/cli 1.13.20 → 1.14.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/package.json +3 -3
- package/repositories.js +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [1.14.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.13.20...v1.14.0) (2022-12-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump dependencies ([f6bf46c](https://github.com/CoCreate-app/CoCreate-cli/commit/f6bf46c3968989c18db039d491792a896689a080))
|
|
7
|
+
* typo mongodb repo ([feab3a4](https://github.com/CoCreate-app/CoCreate-cli/commit/feab3a4498fcce2e6eabaf43bf535762f1d44d77))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add file-server and mongodb to repositiory list ([eaddba7](https://github.com/CoCreate-app/CoCreate-cli/commit/eaddba79e7cc6c4f536ab4b4dd9085fc194bc913))
|
|
13
|
+
|
|
1
14
|
## [1.13.20](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.13.19...v1.13.20) (2022-12-02)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.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",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"webpack-log": "^3.0.1"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@cocreate/docs": "^1.4.
|
|
77
|
-
"@cocreate/hosting": "^1.6.
|
|
76
|
+
"@cocreate/docs": "^1.4.13",
|
|
77
|
+
"@cocreate/hosting": "^1.6.11",
|
|
78
78
|
"colors": "latest",
|
|
79
79
|
"glob": "^7.1.7",
|
|
80
80
|
"got": "latest",
|
package/repositories.js
CHANGED
|
@@ -441,6 +441,10 @@ module.exports = [
|
|
|
441
441
|
// 'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-crdt-server',
|
|
442
442
|
// 'repo': 'github.com/CoCreate-app/CoCreate-crdt-server.git'
|
|
443
443
|
// },
|
|
444
|
+
{
|
|
445
|
+
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-file-server',
|
|
446
|
+
'repo': 'github.com/CoCreate-app/CoCreate-file-server.git'
|
|
447
|
+
},
|
|
444
448
|
{
|
|
445
449
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-loadtest',
|
|
446
450
|
'repo': 'github.com/CoCreate-app/CoCreate-loadtest.git'
|
|
@@ -453,6 +457,10 @@ module.exports = [
|
|
|
453
457
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-metrics-server',
|
|
454
458
|
'repo': 'github.com/CoCreate-app/CoCreate-metrics-server.git'
|
|
455
459
|
},
|
|
460
|
+
{
|
|
461
|
+
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-mongodb',
|
|
462
|
+
'repo': 'github.com/CoCreate-app/CoCreate-mongodb.git'
|
|
463
|
+
},
|
|
456
464
|
{
|
|
457
465
|
'path': '/home/ubuntu/CoCreateServer/CoCreate-components/CoCreate-node-autoscaler',
|
|
458
466
|
'repo': 'github.com/CoCreate-app/CoCreate-node-autoscaler.git'
|