triflux 5.2.0 → 6.0.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/bin/tfx-doctor.mjs +3 -7
- package/bin/tfx-setup.mjs +3 -7
- package/bin/triflux.mjs +2470 -2463
- package/hub/team/headless.mjs +318 -16
- package/hub/team/psmux.mjs +16 -4
- package/package.json +1 -1
- package/scripts/lib/logger.mjs +4 -4
- package/scripts/preinstall.mjs +80 -43
- package/skills/tfx-multi/SKILL.md +39 -15
package/bin/tfx-doctor.mjs
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// tfx-doctor — triflux doctor 바로가기
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
7
|
-
process.argv = [process.argv[0], process.argv[1], "doctor", ...process.argv.slice(2)];
|
|
8
|
-
await import("./triflux.mjs");
|
|
2
|
+
// tfx-doctor — triflux doctor 바로가기
|
|
3
|
+
process.argv = [process.argv[0], process.argv[1], "doctor", ...process.argv.slice(2)];
|
|
4
|
+
await import("./triflux.mjs");
|
package/bin/tfx-setup.mjs
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// tfx-setup — triflux setup 바로가기
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
7
|
-
process.argv = [process.argv[0], process.argv[1], "setup", ...process.argv.slice(2)];
|
|
8
|
-
await import("./triflux.mjs");
|
|
2
|
+
// tfx-setup — triflux setup 바로가기
|
|
3
|
+
process.argv = [process.argv[0], process.argv[1], "setup", ...process.argv.slice(2)];
|
|
4
|
+
await import("./triflux.mjs");
|