@aift/antigravity 1.0.0 → 1.0.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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import fs from 'fs';
|
|
|
7
7
|
import path from 'path';
|
|
8
8
|
|
|
9
9
|
const program = new Command();
|
|
10
|
-
const API_URL = 'https://
|
|
10
|
+
const API_URL = 'https://bmycrqkprypainwocgnl.supabase.co/functions/v1/pull-skill';
|
|
11
11
|
|
|
12
12
|
program
|
|
13
13
|
.name('antigravity')
|
|
@@ -19,7 +19,7 @@ program
|
|
|
19
19
|
.argument('<skill-name>', 'Le nom du skill à récupérer')
|
|
20
20
|
.description('Récupère un skill depuis le Hub AFT et l\'installe localement.')
|
|
21
21
|
.action(async (skillName) => {
|
|
22
|
-
const spinner = ora(`Récupération du skill ${chalk.bold.
|
|
22
|
+
const spinner = ora(`Récupération du skill ${chalk.bold.yellow(skillName)}...`).start();
|
|
23
23
|
|
|
24
24
|
try {
|
|
25
25
|
const response = await fetch(`${API_URL}?name=${skillName}`);
|