Peter Šulek

Results 22 comments of Peter Šulek

> This glob pattern is working for me to include dot files: `"templates/**/{.*,*}"` What pattern should i use to copy files with dot at begin (like .eslintrc) and folders (like...

> I am a new user and I was getting this issue where I couldn't log in when I downloaded version 1.13 and 1.14 and tried to do some of...

> I've been working a bit with debugging the main process and have a working debug configuration for VScode: > > ``` > { > "version": "0.2.0", > "configurations": [...

@talentlessguy cant u just use that `charset` function you mention directly in your package? Because using **es-mime-types** depending on file `mime-db\db.json` which is ~180kb. Thats hell too much.

I can look at it tomorrow

I have same issue with version `2.0.12`, it seems this code (tested on my local `node_modules\async-wait-until\package.json` will fix issues for ESM modules: ``` "type": "module", "exports": { ".": { "require":...

or maybe shorter exports: ``` "type": "module", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.esm.js" } } ```

I'm playing with this right now in C#, and found this: ```csharp Console.OutputEncoding = Encoding.UTF8; Console.Clear(); Console.BackgroundColor = ConsoleColor.DarkRed; Console.ForegroundColor = ConsoleColor.White; Console.Clear(); Console.WriteLine("\x1b[38;5;15m A \x1b[0m"); var a = Console.BackgroundColor;...

I made these changes: ```c# var restoreBgColorCode = AnsiColorBuilder.GetAnsiCodes(profile.Capabilities.ColorSystem, Color.FromConsoleColor(System.Console.BackgroundColor),false).ToArray(); var ansi = result.Length > 0 ? $"{SGR(result)}{text}{SGR(0)}{SGR(restoreBgColorCode)}" : text; ``` in `AnsiBuilder.Build` method. And result is this: ![image](https://github.com/spectreconsole/spectre.console/assets/2369743/f1b8e943-257f-48fb-8b1f-cd3ac9efa42d) But...