William Bernting

Results 53 comments of William Bernting

My work-around for now. inside babel-loader ``` plugins: [ "transform-object-rest-spread", "syntax-dynamic-import", [ "react-css-modules", { context: options.context, // include: "\.module\.(less|css)$", // PR pending exclude: "^(?!.*module).+\.(less|css)$", filetypes: { ".less": { syntax: "postcss-less"...

In my org we use custom-elements-bundle to then recompile the output into a systemjs bundle, which ensures we load the custom elements before the apps load (single-spa / systemjs). We...

I tried to use `dist-custom-elements` now, and it's a little finicky because there's no index.js that exports all the files, so we can't easily just bundle all the files into...

I just tried using powershell and it doesn't seem to work either.

This is what I get back as result using wsl2 ![image](https://user-images.githubusercontent.com/25477382/156235767-71c86699-65d4-45ec-9359-7d2916bd675c.png)

@zkat can we merge this someday? I was looking for an ability to do this today.

If we want to make sure not to break anything, I think the safe mode should be opt in.

@staltz yes. Not sure if this is sort of "out of scope" for Snabbdom. Not a huge deal in my case, but I wanted to point it out in any...

@marvinhagemeister Here is the component in its entirety, plus the `register()` call. :-) ```ts import React, { useState } from 'react'; import register from 'preact-custom-element/src/index.js'; import AccordionStateless from './AccordionStateless/AccordionStateless'; import...

Here is an example of what we've managed to pull out from an AST parser, including all legal DOM attributes. It feels a little wrong to pursue this approach just...