@orxataguy/tyr 1.0.11-beta.8 → 1.0.16
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/LICENSE +21 -21
- package/README.md +363 -408
- package/bin/tyr.js +28 -28
- package/bin/tyr.ts +13 -13
- package/package.json +69 -69
- package/src/core/Container.ts +75 -75
- package/src/core/Kernel.ts +243 -245
- package/src/core/Logger.ts +51 -51
- package/src/core/TyrError.ts +57 -57
- package/src/core/sys/config.ts +331 -333
- package/src/core/sys/doc.ts +250 -324
- package/src/core/sys/help.ts +149 -149
- package/src/lib/DockerManager.ts +108 -108
- package/src/lib/FileSystemManager.ts +171 -171
- package/src/lib/GitManager.ts +134 -134
- package/src/lib/JiraManager.ts +103 -103
- package/src/lib/PackageManager.ts +87 -87
- package/src/lib/SQLManager.ts +112 -112
- package/src/lib/SetupManager.ts +325 -325
- package/src/lib/ShellManager.ts +200 -200
- package/src/lib/SystemManager.ts +83 -83
- package/src/lib/WebManager.ts +102 -102
- package/src/lib/WorkspaceManager.ts +87 -87
- package/src/core/sys/ai.ts +0 -160
- package/src/core/sys/build.ts +0 -121
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Manel Andreu Pérez
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Creative Commons Attribution 4.0 International (CC BY 4.0)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Manel Andreu Pérez
|
|
4
|
+
|
|
5
|
+
You are free to:
|
|
6
|
+
|
|
7
|
+
Share — copy and redistribute the material in any medium or format
|
|
8
|
+
Adapt — remix, transform, and build upon the material for any purpose,
|
|
9
|
+
even commercially
|
|
10
|
+
|
|
11
|
+
Under the following terms:
|
|
12
|
+
|
|
13
|
+
Attribution — You must give appropriate credit, provide a link to the
|
|
14
|
+
license, and indicate if changes were made. You may do so
|
|
15
|
+
in any reasonable manner, but not in any way that suggests
|
|
16
|
+
the licensor endorses you or your use.
|
|
17
|
+
|
|
18
|
+
No additional restrictions — You may not apply legal terms or technological
|
|
19
|
+
measures that legally restrict others from doing anything the license permits.
|
|
20
|
+
|
|
21
|
+
Full license text: https://creativecommons.org/licenses/by/4.0/legalcode
|