fix(documentation): improve readme with comprehensive examples and formatting

- Enhanced readme with detailed API documentation
- Added real-world usage examples and best practices
- Updated legal section to Task Venture Capital GmbH
- Updated CI/CD workflow configurations
- Updated dependencies to latest versions
- Removed obsolete gitlab-ci.yml
This commit is contained in:
2025-08-08 11:47:18 +00:00
parent 3544586761
commit 047e994439
13 changed files with 7962 additions and 4421 deletions

View File

@@ -57,7 +57,7 @@ let coloredFont = (stringArg: string, colorArg: TColorName) => {
};
/**
* colors the back of a string
* colors the back of a string for the terminal
*/
let coloredBackground = (stringArg: string, colorArg: TColorName) => {
let rgbCode = colorTranslator(colorArg);
@@ -65,12 +65,12 @@ let coloredBackground = (stringArg: string, colorArg: TColorName) => {
};
/**
* color a string with xterm
* color a string for the terminal
*/
export let coloredString = (
stringArg: string,
colorFontArg: TColorName,
colorBackgroundArg?: TColorName
colorBackgroundArg?: TColorName,
): string => {
let returnString = coloredFont(stringArg, colorFontArg);
if (colorBackgroundArg) {