@rubix0270/arboris 1.0.1 → 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/dist/cli.mjs +6 -5
- package/manifest.json +1 -1
- package/package.json +3 -2
package/dist/cli.mjs
CHANGED
|
@@ -237,13 +237,14 @@ function printHelp() {
|
|
|
237
237
|
console.log(`arboris \u2014 installe les skills IA recommand\xE9s pour une techno
|
|
238
238
|
|
|
239
239
|
Usage:
|
|
240
|
+
npx arb <techno> [options]
|
|
241
|
+
npx arboris-cli <techno> [options]
|
|
240
242
|
npx @rubix0270/arboris <techno> [options]
|
|
241
|
-
npx @rubix0270/arboris list
|
|
242
243
|
|
|
243
244
|
Exemples:
|
|
244
|
-
npx
|
|
245
|
-
npx
|
|
246
|
-
npx
|
|
245
|
+
npx arb node
|
|
246
|
+
npx arboris-cli node.js --agent cursor
|
|
247
|
+
npx arb typescript --force
|
|
247
248
|
|
|
248
249
|
Technos (alias accept\xE9s: node.js, k8s, spring, postgres\u2026):
|
|
249
250
|
node, js, ts, fastapi, react, angular, java, spring-boot,
|
|
@@ -307,7 +308,7 @@ async function runList() {
|
|
|
307
308
|
const manifest = await loadCliManifest();
|
|
308
309
|
console.log("Technos disponibles:\n");
|
|
309
310
|
console.log(formatStackList(manifest));
|
|
310
|
-
console.log("\nExemple: npx
|
|
311
|
+
console.log("\nExemple: npx arb node");
|
|
311
312
|
}
|
|
312
313
|
async function runInstall(stackInput, options) {
|
|
313
314
|
const manifest = await loadCliManifest();
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rubix0270/arboris",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Installe les skills IA recommandés pour ta stack (Node, React, TypeScript…).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"arboris": "dist/cli.mjs"
|
|
7
|
+
"arboris": "dist/cli.mjs",
|
|
8
|
+
"arb": "dist/cli.mjs"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"dist/cli.mjs",
|