Renée
Renée
I think this need is addressed by the persistentCache option that was added in https://github.com/browserify/module-deps/pull/124?
if you set `"modules": "commonjs"`, babel should transform the import statements to commonjs require.
I don't think there's a one-size-fits-all browser `fs` polyfill. a `readFile` call in the browser may have to do a request to a server like in BrowserFS, if the file...
Added a PR that specifically fixes this vulnerability without introducing breaking changes: https://github.com/webpack/node-libs-browser/pull/89
eventNames, getMaxListeners, prependListener and prependOnceListener are available in [email protected] (https://github.com/webpack/node-libs-browser/pull/74). `off` will be available in [email protected].
it should accept both :/ https://github.com/u-wave/react-vimeo/blob/b96b482426073986fd44deacd9c196ef69e6252b/package.json#L36 the idea is to let your package manager decide the best fit, so if you have @types/react@17 in your tree, it should prefer to...
The `controls` prop maps directly to the `controls` option in the vimeo player SDK. https://github.com/vimeo/player.js#embed-options > This parameter will hide all elements in the player (play bar, sharing buttons, etc)...
I think you need a full URL to private videos to embed them, with a `?h` parameter in the query string. @u-wave/react-vimeo doesn't yet support using full URLs. https://github.com/u-wave/react-vimeo/pull/196 will...
No real timeline on merging this, as it's not really that important for end users anyways. The feature set is the same as the class component version from 0.x. I...
It looks like the Vimeo SDK has a `quality` option, but only on first instantiation, so it would not be possible to update it at runtime. I guess it would...