Francisco Cano Brusa

Results 20 comments of Francisco Cano Brusa

If you're using `npm` (where `"resolutions"` is not available), you can install this version of `remark-mdx` to bypass this issue: ``` npm install [email protected] --save-dev ```

> Same issue here. So much for quickly trying this thing out to see if it is what I need... (fresh project set up as of yesterday, via create-react-app and...

This was a showstopper bug for me, but I managed to make Docz work nevertheless by using the [gatsby theme](https://www.docz.site/docs/gatsby-theme). There are conflicting dependencies, so installation should be as follow:...

I'm using the cli to try to generate a stats file, but I get errors like this: ``` Invalid webpack stats structure, please make sure webpack stats configuration is correct....

Update: also I should mention that my `webpack-stats.json` file doesn't contain an `assets` key. (probably because I'm not using any asset). I should also mention I'm on webpack 4. Any...

My stats seem correct, If I log `webpackConfig.stats` (just before exporting it in the config file), I get this: ```js { assets: true, entrypoints: true, chunks: true, modules: true, builtAt:...

Thanks for the comment @vio Indeed using the [webpack-stats-plugin](https://github.com/FormidableLabs/webpack-stats-plugin) fixes the stats file and makes it work again, so this looks like a plugin overriding the stats configuration.

I believe Scoped Custom Elements seems like the best solution, more so considering it's proposed as a web standard. Right now it this polyfill is adding support: https://www.npmjs.com/package/@webcomponents/scoped-custom-element-registry?activeTab=versions, but it's...

For anyone looking for a workaround, we managed to make it working doing something like this: ```js const backup = window.customElements; window.customElements = registry; // pass your registry here defineCustomElements(...)...

@mayerraphael I agree, the only "proper" solution is support at the Stencil level, but we need workarounds in case that takes a lot... If `defineCustomElements` is a promise, something like...