Marcin K

Results 8 issues of Marcin K

### Environment * OS Version: ubuntu 20.04 * Node.js Version: 16.0.0 ### Actual behavior ```js var glob = require("fast-glob"); console.log('glob', glob) ``` ```sh $ time node index.js glob [AsyncFunction: FastGlob]...

Type: Performance

node-zip has useful cli but in this case, it makes sense to use jszip directly. I did not use v3 version on jszip because it is only exposing async interface...

CLA Signed

According to documentation, task name should be visible in the output. https://microsoft.github.io/just/docs/logging ```js const { task, tscTask, parallel } = require("just-scripts"); const { exec } = require("just-scripts-utils"); task("hello", async() =>...

Include src folder in published package. This is require to fix source maps on webpack and simmilar. I made this change few weeks ago but it was reversed https://github.com/inversify/InversifyJS/pull/1366

TextEncoder and TextDecoder are added as globals in node11. Maybe it is possible to use these for jsdom? https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder https://nodejs.org/api/globals.html#globals_textdecoder https://nodejs.org/api/globals.html#globals_textencoder I made a change in jest to support...

feature

Hi I am wondering If you can add option to auto-indent on save? Also have option to indent select or whole file? Chyzwar

I am using nodenv. Below my config. ``` json { "node_path": { "linux": "/home/raziel/.nodenv/shims/node", }, "jscs_path": { "linux": "/home/raziel/.nodenv/shims/jscs", }, "config_path": "", "format_on_save": false } ``` ``` $ which jscs...

I think that "InvariantViolation" would be a more idiomatic name for this Error. https://developer.mozilla.org/pl/docs/Web/JavaScript/Referencje/Obiekty/Error/name Maybe instead of using framesToPop you could use a name of error to pop frames from...