didierdemoniere

Results 4 comments of didierdemoniere

I finally got it working using the [`setup`](https://webpack.js.org/configuration/dev-server/#devserversetup) option instead of the recommended `before` option. ```js const openInEditor = require('launch-editor-middleware'); module.exports = { devServer: { setup (app) { app.use('/__open-in-editor', openInEditor('code'))...

> Sorry, I went ahead and merged through, but as noted on the PR, the updates introduced breaking issues for Intersect Check functions (TypeCompiler / Value.Check) so I have had...

hello again @sinclairzx81, i think i got it right this time, i removed `includePatternProperties` since it's the same concept and added a new test to prevent regression on this issue....

i just found an interesting clue: while ```ts redisClient.ft.search('idx:users', '@name:"$name"', { DIALECT: 2, PARAMS: { name: 'Alice Johnson' } }) ``` does not work. ```ts redisClient.ft.search('idx:users', '@name:"$name1 $name2"', { DIALECT:...