tcsetup 1.3.1 → 1.4.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
|
@@ -37,6 +37,11 @@ const steps = [
|
|
|
37
37
|
flag: "--skip-lifecycle",
|
|
38
38
|
cmd: "npx feature-lifecycle init --yes",
|
|
39
39
|
},
|
|
40
|
+
{
|
|
41
|
+
name: "Knowledge System",
|
|
42
|
+
flag: "--skip-knowledge",
|
|
43
|
+
cmd: "npx @tcanaud/knowledge-system init --yes",
|
|
44
|
+
},
|
|
40
45
|
];
|
|
41
46
|
|
|
42
47
|
export function install(flags = []) {
|
package/src/updater.js
CHANGED
|
@@ -31,6 +31,12 @@ const TOOLS = [
|
|
|
31
31
|
pkg: "mermaid-workbench",
|
|
32
32
|
cmd: "npx mermaid-workbench init",
|
|
33
33
|
},
|
|
34
|
+
{
|
|
35
|
+
name: "Knowledge System",
|
|
36
|
+
marker: ".knowledge",
|
|
37
|
+
pkg: "@tcanaud/knowledge-system",
|
|
38
|
+
cmd: "npx @tcanaud/knowledge-system update && npx @tcanaud/knowledge-system refresh",
|
|
39
|
+
},
|
|
34
40
|
];
|
|
35
41
|
|
|
36
42
|
const COMMAND_FILES = ["tcsetup.onboard.md", "feature.workflow.md"];
|