Boris Serdiuk

Results 58 issues of Boris Serdiuk

When I tried to install the package, the `install` script has failed ``` > [email protected] postinstall /Users/serdiuk/coding/test/node_modules/chromium-bin > node lib/install.js ⚠ connect ECONNREFUSED 213.186.33.19:443 ``` As I see from the...

This is useful package thanks for work! And I have a feature request. Ruby on rails has the `require_tree` directive in assets pipeline which allows include all scripts in selected...

С недавних пор (месяца три или около того), не работает подсветка кода, отформатированного в markdown. ```js function bla() {} ``` На Github, такое работает, а на хабре – нет

Hello! I have managed to find a reason that cause that problem. It can be easily reproduced with [Polymer logo](https://www.polymer-project.org/images/logos/p-logo.png), for example: The problem occurs only with images with transparent...

Current implementation never rejects promise. However, in the spec, there is [a failure path](https://tc39.github.io/proposal-dynamic-import/#sec-hostimportmoduledynamically) when a module has failed to load, it should be rejected. I understand, that it will...

Now you have ability to specify options in grammar file. It's enough for me, because I have to declare my module name in my file. I can do it in...

I have this code example ```js ``` Both target and rel attribute are dynamically defined, and always both present when needed. However, the rule reports it as an error: ```...

enhancement
help wanted

## Expected Behavior I expect that commit message `fix(module-a,module-b): Do something` will pass `scope-case` rule. ## Current Behavior It fails, because it does not treat comma as a valid separator...

enhancement
feature

Hello! I am trying to enable ESM with mocha in my setup file: **setup.js** ```js require('esm'); ``` And then I am running mocha as `mocha --require setup.js test/**/*.test.js`. This fails...

I have the following code ([same in playground](https://chromeless.netlify.com/#src=const%20chromeless%20=%20new%20Chromeless(%7B%20remote:%20true%20%7D)%0A%0Atry%20%7B%0A%20%20await%20chromeless%0A%20%20%20%20.goto('https://www.graph.cool')%0A%20%20%20%20.click('No%20such%20selector')%0A%7D%20catch(e)%20%7B%0A%20%20console.log('Failed%20to%20click%20an%20element')%0A%20%20const%20screenshot%20=%20await%20chromeless.screenshot()%0A%20%20console.log(screenshot)%0A%7D%0A%0Aawait%20chromeless.end())) ```js try { await chromeless.goto('https://www.graph.cool') await chromeless.click('.no-such-selector') } catch(e) { console.log('Failed to click an element') const screenshot = await chromeless.screenshot() console.log(screenshot) }...