@cocreate/cli 1.19.3 → 1.19.4
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 +9 -0
- package/CoCreate.config.js +1 -1
- package/package.json +1 -1
- package/src/commands/fs/config.js +1 -1
- package/src/execute.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [1.19.4](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.19.3...v1.19.4) (2023-04-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* renamed domains to hosts ([50f3e8b](https://github.com/CoCreate-app/CoCreate-cli/commit/50f3e8b3b8791f4965185e6cea573ecd7415fd46))
|
|
7
|
+
* renamed domans to hosts ([74d952f](https://github.com/CoCreate-app/CoCreate-cli/commit/74d952fd7e90f9fb4f027874293de6df64962dc4))
|
|
8
|
+
* replaceAll single quote with double quotes ([faf067e](https://github.com/CoCreate-app/CoCreate-cli/commit/faf067e2801e0243e249ddb193dc679a6b04f4c0))
|
|
9
|
+
|
|
1
10
|
## [1.19.3](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.19.2...v1.19.3) (2023-03-30)
|
|
2
11
|
|
|
3
12
|
|
package/CoCreate.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.4",
|
|
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/src/execute.js
CHANGED
|
@@ -22,7 +22,7 @@ module.exports = async function execute(command, repos, config) {
|
|
|
22
22
|
|
|
23
23
|
} else {
|
|
24
24
|
let type = command.split(' ')[0]
|
|
25
|
-
let args = command.replace(type, '').
|
|
25
|
+
let args = command.replace(type, '').replaceAll("'", '"').trim()
|
|
26
26
|
|
|
27
27
|
for (let repo of repos) {
|
|
28
28
|
try {
|