tcsetup 1.6.1 → 1.7.0
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/bin/cli.js +2 -0
- package/package.json +1 -1
- package/src/installer.js +5 -0
- package/src/updater.js +6 -0
package/bin/cli.js
CHANGED
|
@@ -31,6 +31,8 @@ Options (init):
|
|
|
31
31
|
--skip-lifecycle Skip Feature Lifecycle Tracker init
|
|
32
32
|
--skip-knowledge Skip Knowledge System init
|
|
33
33
|
--skip-product Skip Product Manager init
|
|
34
|
+
--skip-qa Skip QA System init
|
|
35
|
+
--skip-playbook Skip Playbook Supervisor init
|
|
34
36
|
`;
|
|
35
37
|
|
|
36
38
|
switch (command) {
|
package/package.json
CHANGED
package/src/installer.js
CHANGED
|
@@ -52,6 +52,11 @@ const steps = [
|
|
|
52
52
|
flag: "--skip-qa",
|
|
53
53
|
cmd: "npx @tcanaud/qa-system init --yes",
|
|
54
54
|
},
|
|
55
|
+
{
|
|
56
|
+
name: "Playbook Supervisor",
|
|
57
|
+
flag: "--skip-playbook",
|
|
58
|
+
cmd: "npx @tcanaud/playbook init --yes",
|
|
59
|
+
},
|
|
55
60
|
];
|
|
56
61
|
|
|
57
62
|
export function install(flags = []) {
|
package/src/updater.js
CHANGED
|
@@ -49,6 +49,12 @@ const TOOLS = [
|
|
|
49
49
|
pkg: "@tcanaud/qa-system",
|
|
50
50
|
cmd: "npx @tcanaud/qa-system update",
|
|
51
51
|
},
|
|
52
|
+
{
|
|
53
|
+
name: "Playbook Supervisor",
|
|
54
|
+
marker: ".playbooks",
|
|
55
|
+
pkg: "@tcanaud/playbook",
|
|
56
|
+
cmd: "npx @tcanaud/playbook update",
|
|
57
|
+
},
|
|
52
58
|
];
|
|
53
59
|
|
|
54
60
|
const COMMAND_FILES = ["tcsetup.onboard.md"];
|