Meghea Iulian
Meghea Iulian
@jdauphant In some later versions of nginx it seems there is a `default.conf` file in `/etc/nginx/sites-available/`. Currently the role removes a file called `default` (not `default.conf`) in `remove-defaults.yml`.
@bennypowers The [`Provider`]( https://github.com/matthewp/haunted/blob/main/src/create-context.ts#L31) doesn't seem to be using `component` and does not currently have a shadow DOM. When doing ```js import { createContext, component, html } from 'haunted'; const...
Came across this issue too. Turns out that the problem was that 11ty didn't knew about the collections used. Using eleventyImport front matter config fixed the problem. See https://www.11ty.dev/docs/collections/#declare-your-collections-for-incremental-builds and...
I have created a fork at https://github.com/plumelo/rollup-styles `rollup-styles` that supports rollup v3 and v4.
@RoryDuncan I am aware of that convention but i couldn't find any good and meaningful unprefixed npm package name. If you have a good suggestion I'd welcome it. The package...
I maintain a fork at https://github.com/plumelo/rollup-plugin-styler. When time allows I update dependencies. Also looking into migrating the code (imports) to ESM.
@matthewp or @bennypowers Can you please have a look at this? It is very inconvenient for context consumer elements to have Shadow DOM.
For the `disconnected` function to work in `virtual` it needs to be called from an ancestor somewhere in the tree. For `component` this does not happen and you can end...
I will provide a better example at a some later point but basically: 1. create a custom element with component 2. create a virtual with a effect (console.log in the...
Yes! this works. But does it work if you unmount/detach the my-app element ? from web inspector.