@cocreate/cli 1.33.5 → 1.33.6
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/check-coc.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.33.6](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.33.5...v1.33.6) (2023-06-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [@cocreate](https://github.com/cocreate) ([7334909](https://github.com/CoCreate-app/CoCreate-cli/commit/73349097604ceab943a1deaf33e3635166178141))
|
|
7
|
+
|
|
1
8
|
## [1.33.5](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.33.4...v1.33.5) (2023-06-11)
|
|
2
9
|
|
|
3
10
|
|
package/check-coc.js
CHANGED
|
@@ -8,7 +8,7 @@ try {
|
|
|
8
8
|
// If "coc" command does not exist, install it globally
|
|
9
9
|
console.log('"coc" command not found. Installing globally...');
|
|
10
10
|
try {
|
|
11
|
-
execSync('npm install -g
|
|
11
|
+
execSync('npm install -g @cocreate/cli', { stdio: 'inherit' });
|
|
12
12
|
console.log('"coc" has been installed globally.');
|
|
13
13
|
} catch (error) {
|
|
14
14
|
console.error('Failed to install "coc" globally:', error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/cli",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.6",
|
|
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",
|