Jean-Philippe Bergeron
Jean-Philippe Bergeron
Hello, When my server was upgraded to PHP 5.4, 5.5 the following warning was shown. Warning: preg_match(): Compilation failed: invalid range in character class at offset 8 in Everzet/Jade/Lexer/Lexer.php on...
The following gives a compilation error ```less const Column = styled.div` width: 25px; height: 47px; margin-left: -1px; z-index: if(@type = "filtered", 1); `; ```
Example: ``` :hover ${ButtonSection} { opacity: 1; } ```
`margin-left: -${tagMargin + 1}px;` Similar issue with `margin-left: -@tagMargin + 1px;`
When compiling on Windows, the `outputbin` will be generated with `path.join(binPath, outputbin)` and this will change the forward slashes into back slashes. Later, the function will fail in AWS as...
Hello, Thanks for your fork, it helps me a lot! I am having one issue with DeepExtend, it will merge arrays with null by removing the nulls. For example, if...
Hello, Thanks for making the lato font as an npm package. There is an issue with the vertical positioning of the font in Internet Explorer, and it could be solved...
When using the postincrement operator (i++) in an SIMDE function call, it sometimes gets incremented multiple times because of macro syntax. See [this](https://stackoverflow.com/questions/7432124/macros-and-postincrement) question for reference. In my specific case,...
We should change `yarn install react-resize-panel` to `yarn add react-resize-panel`. It currently shows an error ``` error `install` has been replaced with `add` to add new dependencies. Run "yarn add...
When writing custom query, there is no need to add new GraphQLObjectType, only the fields should be passed in. const schema = mooseql([Category], { query: { field1, field2 } })...