rook-cli 1.3.5 → 1.3.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/package.json +1 -1
- package/src/config/constants.js +1 -1
- package/src/utils/logger.js +1 -1
package/package.json
CHANGED
package/src/config/constants.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/** Repositório de origem no GitHub (owner/repo) */
|
|
9
|
-
export const GITHUB_REPO = process.env.GITHUB_REPO || 'chesslabdev/rook-
|
|
9
|
+
export const GITHUB_REPO = process.env.GITHUB_REPO || 'chesslabdev/rook-cli/rook-components';
|
|
10
10
|
|
|
11
11
|
/** URL base da API do GitHub para conteúdo do repositório */
|
|
12
12
|
export const GITHUB_API_BASE = `https://api.github.com/repos/${GITHUB_REPO}/contents`;
|
package/src/utils/logger.js
CHANGED
|
@@ -49,7 +49,7 @@ export class Logger {
|
|
|
49
49
|
banner() {
|
|
50
50
|
console.log('');
|
|
51
51
|
console.log(pc.bold(pc.white(' ╔══════════════════════════════╗')));
|
|
52
|
-
console.log(pc.bold(pc.white(' ║ ♟️ ROOK CLI v1.3.
|
|
52
|
+
console.log(pc.bold(pc.white(' ║ ♟️ ROOK CLI v1.3.6 ║')));
|
|
53
53
|
console.log(pc.bold(pc.white(' ║ Shopify Component Tool ║')));
|
|
54
54
|
console.log(pc.bold(pc.white(' ╚══════════════════════════════╝')));
|
|
55
55
|
console.log('');
|