Louis Frament
Louis Frament
I suppose docker use here helps for cross platform compatibilty (`windows-latest`) Maybe consider `python` as another cross platform cmd? But yeah, I noticed too the `Build pullreminders/slack-action@master` step that lasts...
For info, I ended up doing exactly what you said: - `slack-send.sh` (same as [entrypoint.sh](https://github.com/pullreminders/slack-action/blob/master/entrypoint.sh) except for the new env variables) - `slack-send.ps1` ```ps1 $postParams = "{'channel': '$Env:CHANNEL', 'attachments': [{'color':...
Do you have example of other librairies that behave like that? The consensus appear to be the array https://cburgmer.github.io/json-path-comparison/results/bracket_notation_with_quoted_number_on_object.html
Thanks for the PR. Can you set the description of the first post to the following please? Fix #220
thanks for the workaround. However I wonder if this is symply a typing issue, or an actual issue with the code, as the project is in TypeScript, so the typing...
have you checked my workaround to the similar problem of angular nested routing in https://github.com/garybernhardt/static-path/issues/4#issuecomment-920668735? TLDR: remove the parent prefix from the path `api.get(cleanRoutePattern(paths.x_api_some_random_endpoint.pattern, paths.x_api.pattern))` so both parent and child...
it looks like the `monaco` instance imported from npm package is not the same than the global one used by this package (generated by the loader) https://github.com/miki995/ngx-monaco-editor-v2/blob/17b5c218e7bd7e46fe59cd2578347b26963736a5/projects/editor/src/lib/editor.component.ts#L8 so `import *...
this is where the request.Uri is passed to the GetNextLink function, we can clearly see it does not use the BaseAddressFactory and it should not be hard to add it...
hey @habbes , thanks for the followup. good point, indeed I was not aware of this `SkipTokenHandler`, however when reading the doc, it seems more suited to allow customize the...
this is actually an error with `monaco-editor` using non-standard syntax not compatible with the angular builder (importing css file in TS files). here is a simple workaround I've found on...