@cocreate/cli 1.12.42 → 1.12.43
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 +7 -0
- package/package.json +1 -1
- package/repositories3.js +8 -8
- package/src/commands/fs/automated.js +1 -1
- package/src/commands/fs/config.js +1 -1
- package/src/commands/fs/gitignore.js +1 -1
- package/src/commands/fs/manual.js +1 -1
- package/src/commands/fs/remove.js +1 -1
- package/src/commands/fs/replace.js +1 -1
- package/src/commands/fs/webpack.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.12.43](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.12.42...v1.12.43) (2022-03-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update COCreate-modules to CoCreate-apps ([218d88f](https://github.com/CoCreate-app/CoCreate-cli/commit/218d88f522e16c0703a6ae4ffacadca46983d723))
|
|
7
|
+
|
|
1
8
|
## [1.12.42](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.12.41...v1.12.42) (2022-02-24)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.43",
|
|
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",
|
package/repositories3.js
CHANGED
|
@@ -246,35 +246,35 @@ module.exports = [
|
|
|
246
246
|
|
|
247
247
|
// Modules
|
|
248
248
|
{
|
|
249
|
-
'path': '../CoCreate-
|
|
249
|
+
'path': '../CoCreate-apps/CoCreate-builder',
|
|
250
250
|
'repo': 'github.com/CoCreate-app/CoCreate-builder.git'
|
|
251
251
|
},
|
|
252
252
|
// {
|
|
253
|
-
// 'path':'../CoCreate-
|
|
253
|
+
// 'path':'../CoCreate-apps/CoCreate-calendar',
|
|
254
254
|
// 'repo' : 'github.com/CoCreate-app/CoCreate-calendar.git'
|
|
255
255
|
// },
|
|
256
256
|
// {
|
|
257
|
-
// 'path':'../CoCreate-
|
|
257
|
+
// 'path':'../CoCreate-apps/CoCreate-checkout',
|
|
258
258
|
// 'repo' : 'github.com/CoCreate-app/CoCreate-checkout.git'
|
|
259
259
|
// },
|
|
260
260
|
{
|
|
261
|
-
'path': '../CoCreate-
|
|
261
|
+
'path': '../CoCreate-apps/CoCreate-dashboard',
|
|
262
262
|
'repo': 'github.com/CoCreate-app/CoCreate-dashboard.git'
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
|
-
'path': '../CoCreate-
|
|
265
|
+
'path': '../CoCreate-apps/CoCreate-datatable',
|
|
266
266
|
'repo': 'github.com/CoCreate-app/CoCreate-datatable.git'
|
|
267
267
|
},
|
|
268
268
|
// {
|
|
269
|
-
// 'path':'../CoCreate-
|
|
269
|
+
// 'path':'../CoCreate-apps/CoCreate-email',
|
|
270
270
|
// 'repo' : 'github.com/CoCreate-app/CoCreate-email.git'
|
|
271
271
|
// },
|
|
272
272
|
{
|
|
273
|
-
'path': '../CoCreate-
|
|
273
|
+
'path': '../CoCreate-apps/CoCreate-kanban',
|
|
274
274
|
'repo': 'github.com/CoCreate-app/CoCreate-kanban.git'
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
|
-
'path': '../CoCreate-
|
|
277
|
+
'path': '../CoCreate-apps/CoCreate-sandbox',
|
|
278
278
|
'repo': 'github.com/CoCreate-app/CoCreate-sandbox.git'
|
|
279
279
|
},
|
|
280
280
|
|
|
@@ -121,7 +121,7 @@ jobs:
|
|
|
121
121
|
|
|
122
122
|
// glob("../CoCreate-components/CoCreate-action/.github/workflows", globUpdater)
|
|
123
123
|
glob("../CoCreate-components/*/.github/workflows/", globUpdater)
|
|
124
|
-
glob("../CoCreate-
|
|
124
|
+
glob("../CoCreate-apps/*/.github/workflows/", globUpdater)
|
|
125
125
|
glob("../CoCreate-plugins/*/.github/workflows/", globUpdater)
|
|
126
126
|
|
|
127
127
|
// substrin (9) removes CoCreateC leving namme as SS
|
|
@@ -85,7 +85,7 @@ function update(MdPath) {
|
|
|
85
85
|
|
|
86
86
|
// glob("../../CoCreate-components/CoCreate-filter/CoCreate.config.js", globUpdater);
|
|
87
87
|
glob("../../CoCreate-components/*/CoCreate.config.js", globUpdater);
|
|
88
|
-
glob("../../CoCreate-
|
|
88
|
+
glob("../../CoCreate-apps/*/CoCreate.config.js", globUpdater);
|
|
89
89
|
glob("../../CoCreate-plugins/*/CoCreate.config.js", globUpdater);
|
|
90
90
|
// glob("../CoCreateCSS/CoCreate.config.js", globUpdater);
|
|
91
91
|
// glob("../CoCreateJS/CoCreate.config.js", globUpdater);
|
|
@@ -38,7 +38,7 @@ dist
|
|
|
38
38
|
// glob("./.gitignore", globUpdater)
|
|
39
39
|
// glob("../CoCreate-adminUI/.gitignore", globUpdater)
|
|
40
40
|
glob("../CoCreate-components/*/.gitignore", globUpdater)
|
|
41
|
-
glob("../CoCreate-
|
|
41
|
+
glob("../CoCreate-apps/*/.gitignore", globUpdater)
|
|
42
42
|
glob("../CoCreate-plugins/*/.gitignore", globUpdater)
|
|
43
43
|
// glob("../CoCreate-website/.gitignore", globUpdater)
|
|
44
44
|
// glob("../CoCreate-website-template/.gitignore", globUpdater)
|
|
@@ -81,7 +81,7 @@ jobs:
|
|
|
81
81
|
|
|
82
82
|
// glob("../CoCreate-components/CoCreate-action/.github/workflows", globUpdater)
|
|
83
83
|
glob("../CoCreate-components/*/.github/workflows/", globUpdater)
|
|
84
|
-
glob("../CoCreate-
|
|
84
|
+
glob("../CoCreate-apps/*/.github/workflows/", globUpdater)
|
|
85
85
|
glob("../CoCreate-plugins/*/.github/workflows/", globUpdater)
|
|
86
86
|
|
|
87
87
|
// substrin (9) removes CoCreateC leving namme as SS
|
|
@@ -19,7 +19,7 @@ function update(YmlPath) {
|
|
|
19
19
|
|
|
20
20
|
glob("../CoCreate-components/CoCreate-action/dist", globUpdater)
|
|
21
21
|
// glob("../CoCreate-components/*/.github/workflows/automation.yml", globUpdater)
|
|
22
|
-
// glob("../CoCreate-
|
|
22
|
+
// glob("../CoCreate-apps/*/.github/workflows/automation.yml", globUpdater)
|
|
23
23
|
// glob("../CoCreate-plugins/*/.github/workflows/automation.yml", globUpdater)
|
|
24
24
|
|
|
25
25
|
// substrin (9) removes CoCreateC leving namme as SS
|
|
@@ -38,7 +38,7 @@ function update(mdPath) {
|
|
|
38
38
|
glob("./docs/", globUpdater)
|
|
39
39
|
// glob("../CoCreate-docs/docs/*.html", globUpdater)
|
|
40
40
|
// glob("../CoCreate-components/*/docs/*.html", globUpdater)
|
|
41
|
-
// glob("../CoCreate-
|
|
41
|
+
// glob("../CoCreate-apps/*/docs/*.html", globUpdater)
|
|
42
42
|
// glob("../CoCreate-plugins/*/docs/*.html", globUpdater)
|
|
43
43
|
|
|
44
44
|
console.log('finished')
|
|
@@ -161,7 +161,7 @@ optimization: {
|
|
|
161
161
|
|
|
162
162
|
|
|
163
163
|
glob("../CoCreate-components/*/webpack.config.js", globUpdater)
|
|
164
|
-
glob("../CoCreate-
|
|
164
|
+
glob("../CoCreate-apps/*/webpack.config.js", globUpdater)
|
|
165
165
|
glob("../CoCreate-plugins/*/webpack.config.js", globUpdater)
|
|
166
166
|
glob("../CoCreateCSS/webpack.config.js", globUpdater)
|
|
167
167
|
|