@cocreate/cli 1.29.0 → 1.29.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/.github/workflows/automated.yml +1 -1
- package/CHANGELOG.md +15 -0
- package/package.json +3 -3
- package/repositories.js +37 -45
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
@semantic-release/git
|
|
37
37
|
@semantic-release/github
|
|
38
38
|
env:
|
|
39
|
-
GITHUB_TOKEN: "${{ secrets.
|
|
39
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB }}"
|
|
40
40
|
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
|
41
41
|
outputs:
|
|
42
42
|
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.29.2](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.29.1...v1.29.2) (2023-06-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* replace secert GITHUB_TOKEN with GITHUB ([02ab190](https://github.com/CoCreate-app/CoCreate-cli/commit/02ab1908d70c786bb7096d3b01c7a9f6ea5c727d))
|
|
7
|
+
* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([c70f49e](https://github.com/CoCreate-app/CoCreate-cli/commit/c70f49e8e701735c5a8335ef301197bb5da5d1b9))
|
|
8
|
+
|
|
9
|
+
## [1.29.1](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.29.0...v1.29.1) (2023-06-04)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* [@v3](https://github.com/v3) ([cc06e50](https://github.com/CoCreate-app/CoCreate-cli/commit/cc06e50df8cb1ef32266d8ee2d23350c6f2ec066))
|
|
15
|
+
|
|
1
16
|
# [1.29.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.28.4...v1.29.0) (2023-06-04)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.2",
|
|
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",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"coc": "src/coc.js"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cocreate/docs": "^1.7.
|
|
63
|
-
"@cocreate/hosting": "^1.10.
|
|
62
|
+
"@cocreate/docs": "^1.7.15",
|
|
63
|
+
"@cocreate/hosting": "^1.10.8",
|
|
64
64
|
"colors": "latest",
|
|
65
65
|
"glob": "^7.1.7",
|
|
66
66
|
"prettier": "^2.3.2",
|
package/repositories.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
module.exports = [
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
{
|
|
4
|
+
'path': '../../CoCreateJS',
|
|
5
|
+
'repo': 'github.com/CoCreate-app/CoCreateJS.git'
|
|
6
|
+
},
|
|
7
7
|
{
|
|
8
8
|
'path': '../../CoCreateCSS',
|
|
9
9
|
'repo': 'github.com/CoCreate-app/CoCreateCSS.git'
|
|
10
10
|
},
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
{
|
|
12
|
+
'path': '../../CoCreate-admin',
|
|
13
|
+
'repo': 'github.com/CoCreate-app/CoCreate-admin.git'
|
|
14
|
+
},
|
|
15
15
|
{
|
|
16
16
|
'path': '../../CoCreate-website',
|
|
17
17
|
'repo': 'github.com/CoCreate-app/CoCreate-website.git'
|
|
18
18
|
},
|
|
19
19
|
// {
|
|
20
|
-
// 'path': '
|
|
20
|
+
// 'path': '../../CoCreate-website-template',
|
|
21
21
|
// 'repo': 'github.com/CoCreate-app/CoCreate-website-template.git'
|
|
22
22
|
// },
|
|
23
23
|
|
|
@@ -393,34 +393,34 @@ module.exports = [
|
|
|
393
393
|
|
|
394
394
|
|
|
395
395
|
|
|
396
|
-
// {
|
|
397
|
-
// 'path': '../CoCreateWS',
|
|
398
|
-
// 'repo': 'github.com/CoCreate-app/CoCreateWS.git'
|
|
399
|
-
// },
|
|
400
|
-
// {
|
|
401
|
-
// 'path': '../CoCreateApi',
|
|
402
|
-
// 'repo': 'github.com/CoCreate-app/CoCreateApi.git'
|
|
403
|
-
// },
|
|
404
|
-
|
|
405
|
-
// {
|
|
406
|
-
// 'path': '../CoCreateLB',
|
|
407
|
-
// 'repo': 'github.com/CoCreate-app/CoCreateLB.git'
|
|
408
|
-
// },
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
// // Components
|
|
412
|
-
{
|
|
413
|
-
'path': '../CoCreate-
|
|
414
|
-
'repo': 'github.com/CoCreate-app/CoCreate-
|
|
396
|
+
// {
|
|
397
|
+
// 'path': '../CoCreateWS',
|
|
398
|
+
// 'repo': 'github.com/CoCreate-app/CoCreateWS.git'
|
|
399
|
+
// },
|
|
400
|
+
// {
|
|
401
|
+
// 'path': '../CoCreateApi',
|
|
402
|
+
// 'repo': 'github.com/CoCreate-app/CoCreateApi.git'
|
|
403
|
+
// },
|
|
404
|
+
|
|
405
|
+
// {
|
|
406
|
+
// 'path': '../CoCreateLB',
|
|
407
|
+
// 'repo': 'github.com/CoCreate-app/CoCreateLB.git'
|
|
408
|
+
// },
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
// // Components
|
|
412
|
+
{
|
|
413
|
+
'path': '../CoCreate-authenticate',
|
|
414
|
+
'repo': 'github.com/CoCreate-app/CoCreate-authenticate.git'
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
'path': '../CoCreate-authorize',
|
|
418
|
+
'repo': 'github.com/CoCreate-app/CoCreate-authorize.git'
|
|
415
419
|
},
|
|
416
420
|
{
|
|
417
421
|
'path': '../CoCreate-crud-server',
|
|
418
422
|
'repo': 'github.com/CoCreate-app/CoCreate-crud-server.git'
|
|
419
423
|
},
|
|
420
|
-
// {
|
|
421
|
-
// 'path': '../CoCreate-crdt-server',
|
|
422
|
-
// 'repo': 'github.com/CoCreate-app/CoCreate-crdt-server.git'
|
|
423
|
-
// },
|
|
424
424
|
{
|
|
425
425
|
'path': '../CoCreate-file-server',
|
|
426
426
|
'repo': 'github.com/CoCreate-app/CoCreate-file-server.git'
|
|
@@ -445,10 +445,6 @@ module.exports = [
|
|
|
445
445
|
'path': '../CoCreate-node-autoscaler',
|
|
446
446
|
'repo': 'github.com/CoCreate-app/CoCreate-node-autoscaler.git'
|
|
447
447
|
},
|
|
448
|
-
{
|
|
449
|
-
'path': '../CoCreate-permissions',
|
|
450
|
-
'repo': 'github.com/CoCreate-app/CoCreate-permissions.git'
|
|
451
|
-
},
|
|
452
448
|
{
|
|
453
449
|
'path': '../CoCreate-server-side-render',
|
|
454
450
|
'repo': 'github.com/CoCreate-app/CoCreate-server-side-render.git'
|
|
@@ -457,16 +453,12 @@ module.exports = [
|
|
|
457
453
|
'path': '../CoCreate-socket-server',
|
|
458
454
|
'repo': 'github.com/CoCreate-app/CoCreate-socket-server.git'
|
|
459
455
|
},
|
|
460
|
-
|
|
456
|
+
|
|
461
457
|
// Maybe depreciated
|
|
462
|
-
{
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
'path': '../CoCreate-ide',
|
|
468
|
-
'repo': 'github.com/CoCreate-app/CoCreate-ide.git'
|
|
469
|
-
},
|
|
458
|
+
// {
|
|
459
|
+
// 'path': '../CoCreate-ide',
|
|
460
|
+
// 'repo': 'github.com/CoCreate-app/CoCreate-ide.git'
|
|
461
|
+
// },
|
|
470
462
|
// {
|
|
471
463
|
// 'path': '../CoCreateEmail',
|
|
472
464
|
// 'repo': 'github.com/CoCreate-app/CoCreateEmail.git'
|