FAL
FAL
Another usecase: A very simple job should check if all files of a Pull Request are correctly formatted with `Prettier`. So I only need this single package and nothing else....
@bnb Yes this would also work but I don't see a way to use it with configurations from `package.json`. (without writing my own shell-script or similar) * Use version defined...
I ended up extracting the version with a powershell-script and then calling it this way: ``` npm exec --package=$(prettierXmlPckg) --package=$(prettierPckg) --call="npm run formatter-list-diff" // $(prettierXmlPckg) -> "@prettier/[email protected]" // $(prettierPckg) ->...
When [exporting the SVG](https://svgjs.dev/docs/3.0/importing-exporting/#svg-as-getter) you can pass a "export modifier" function which lets you modify/remove any node. I guess it highly depends on the modifications one has to do but...
After a lot of testing and playing around this was the ultimate answer, which I was looking for: https://github.com/microsoft/monaco-editor/issues/2605#issue-962590804 * Only CRA without overrides * [@monaco-editor/react](https://www.npmjs.com/package/@monaco-editor/react) * Monaco is part...
What about updating the [webpack samples](https://github.com/microsoft/monaco-editor/tree/main/samples)? I think that the outdated examples are the main reason why this topic still exists and people keep coming back here. Knowing that one...
TL;DR: Using [react-reverse-portal](https://www.npmjs.com/package/react-reverse-portal) "around" the layout manager should remove the mentioned issues. Adding this in your app, could be quite easy if everything can be mounted immediately, but if tabs...
@AmyLynn87 Sorry, haven't read this yet. > But I'm still not able to find a solution about the scrollbar that jumps to the top of the panel every time I...
Sorry for not providing an example but for me it's like that with `publicAPI`: * Hook `useTreeViewContext` * Typing: `Partial` * Compiler: `... does not exist on type 'Partial'` *...
Still new to Dockview but a possible workaround is to use `closeActionOverride` from the `DockviewDefaultTab`. Obviously this only works when the panel gets closed with the default `X`-button in the...