tcsetup 1.4.0 → 1.5.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 +1 -0
- package/package.json +1 -1
- package/src/installer.js +5 -0
- package/src/updater.js +6 -0
package/bin/cli.js
CHANGED
package/package.json
CHANGED
package/src/installer.js
CHANGED
|
@@ -42,6 +42,11 @@ const steps = [
|
|
|
42
42
|
flag: "--skip-knowledge",
|
|
43
43
|
cmd: "npx @tcanaud/knowledge-system init --yes",
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
name: "Product Manager",
|
|
47
|
+
flag: "--skip-product",
|
|
48
|
+
cmd: "npx @tcanaud/product-manager init --yes",
|
|
49
|
+
},
|
|
45
50
|
];
|
|
46
51
|
|
|
47
52
|
export function install(flags = []) {
|
package/src/updater.js
CHANGED
|
@@ -37,6 +37,12 @@ const TOOLS = [
|
|
|
37
37
|
pkg: "@tcanaud/knowledge-system",
|
|
38
38
|
cmd: "npx @tcanaud/knowledge-system update && npx @tcanaud/knowledge-system refresh",
|
|
39
39
|
},
|
|
40
|
+
{
|
|
41
|
+
name: "Product Manager",
|
|
42
|
+
marker: ".product",
|
|
43
|
+
pkg: "@tcanaud/product-manager",
|
|
44
|
+
cmd: "npx @tcanaud/product-manager update",
|
|
45
|
+
},
|
|
40
46
|
];
|
|
41
47
|
|
|
42
48
|
const COMMAND_FILES = ["tcsetup.onboard.md", "feature.workflow.md"];
|