Sergii Lavrin

Results 107 issues of Sergii Lavrin

We definitely should go with client-side search, but yet to decide with which one. Candidates: - http://lunrjs.com/ https://github.com/jediq/grunt-lunr-index-generator https://github.com/assemble/grunt-assemble-lunr Some random tutorial: http://jekyll.tips/jekyll-casts/jekyll-search-using-lunr-js/

enhancement

Seems to be nicer way to handle that wast variety of favicons for different systems and browsers: - https://github.com/haydenbleasel/favicons - or alternative online-only version: https://github.com/RealFaviconGenerator/grunt-real-favicon - or less alive https://github.com/gleero/grunt-favicons...

enhancement

There is no ready solution for Grunt yet. So, we should come up with our own. Properties for `xml` could be gathered from Gray Matter or with `cheerio`. Some useful...

enhancement

It's unclear how to treat multiple CSS files with `grunt-uncss`, `grunt-uncss` accepts multiple html-files, but outputs only one CSS, while sometimes we may need separate CSS β€” for IE hacks,...

enhancement

Add CSS tests Some useful information: http://www.creativebloq.com/css3/4-tools-automatic-css-testing-7133777

enhancement

Given the type ```js // @flow export type Term = { prop: string } ``` compare LSP error with original Flow error: ![3](https://user-images.githubusercontent.com/4460311/51787264-3cb81580-2178-11e9-9c77-79680f099235.png) ![2](https://user-images.githubusercontent.com/4460311/51787262-37f36180-2178-11e9-93fe-aa7f548d914e.png) Because LSP error doesn't show full...

enhancement
LSP

## Problem If this code is invoked right on page load, it often does nothing: ```ts const login = useGoogleLogin(...) login() ``` The issue happens because callbacks are internally waiting...