commet 1.4.0 → 1.4.1
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/index.js +3 -15
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var import_commander11 = require("commander");
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "commet",
|
|
33
|
-
version: "1.4.
|
|
33
|
+
version: "1.4.1",
|
|
34
34
|
description: "Commet CLI - Manage your billing platform from the command line",
|
|
35
35
|
bin: {
|
|
36
36
|
commet: "./bin/commet"
|
|
@@ -442,24 +442,12 @@ async function installSkills(projectRoot) {
|
|
|
442
442
|
return new Promise((resolve3) => {
|
|
443
443
|
(0, import_node_child_process.execFile)(
|
|
444
444
|
npx,
|
|
445
|
-
[
|
|
446
|
-
"-y",
|
|
447
|
-
"--loglevel=error",
|
|
448
|
-
"skills",
|
|
449
|
-
"add",
|
|
450
|
-
"https://github.com/commet-labs/commet",
|
|
451
|
-
"--skill",
|
|
452
|
-
"commet"
|
|
453
|
-
],
|
|
445
|
+
["-y", "--loglevel=error", "skills", "add", "commet-labs/commet-skills"],
|
|
454
446
|
{ cwd: projectRoot },
|
|
455
447
|
(error) => {
|
|
456
448
|
if (error) {
|
|
457
449
|
console.log(import_chalk3.default.dim(" You can install them manually by running:"));
|
|
458
|
-
console.log(
|
|
459
|
-
import_chalk3.default.dim(
|
|
460
|
-
" npx skills add https://github.com/commet-labs/commet --skill commet"
|
|
461
|
-
)
|
|
462
|
-
);
|
|
450
|
+
console.log(import_chalk3.default.dim(" npx skills add commet-labs/commet-skills"));
|
|
463
451
|
}
|
|
464
452
|
resolve3();
|
|
465
453
|
}
|