Ben Ilegbodu
Ben Ilegbodu
## Problem #8 outlines various different issues that are unsupported by the plugin because the `typeCheck` support doesn't yet exist. ## Solution Use the [`typescript-to-proptypes`](https://github.com/merceyz/typescript-to-proptypes) package to add support for...
## Problem I had two problems: 1. I was unsure if I had to install [`@storybook/addon-knobs`](https://github.com/storybookjs/storybook/tree/master/addons/knobs) with `storybook-addon-smart-knobs` 1. The examples were not in [Component Story Format](https://storybook.js.org/docs/formats/component-story-format/) so I wasn't...
Consider adding [`fiddly`](https://www.npmjs.com/package/fiddly) in order to generate a website for the workshop from the README docs and host it on Netlify at https://react-workshop.benmvp.com/
Figure out bonuses/embellishments that more advanced folks can do while they wait for everyone else to catch up.
Hi Ekaterina, First of all, awesome work with this repo! It's something that's sorely needed in the community! I actually built something similar a couple of months ago: https://github.com/benmvp/frontend-confs. I...
The API supports [batched requests](https://www.eventbrite.com/developer/v3/api_overview/batching/) so the SDK should support it as well to make things convenient. We'll flesh out details of the JS API here. Should be done after...
## 🚀 Feature Proposal Instead of putting the CJS build at `lib/cjs`, put it at `lib/` so that it'll be at the root of the package. The `esm/` folder will...
## 🚀 Feature Proposal Apparently Webpack needs the [`sideEffects`](https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free) property set in order to properly do tree-shaking. ## Motivation To have proper tree-shaking support for ESM. ## Example n/a
## 🐛 Bug Report When running `npm test` within [`url-lib`](https://github.com/benmvp/url-lib), I get the following warning: ``` Warning: React version was set to "detect" in eslint-plugin-react settings, but the "react" package...
In [`parseUrl`](https://github.com/benmvp/url-lib/blob/664d360f06828102f42ec93b7ec880cc23cb7df0/parseUrl.js#L21) we have a regular expression to parse a URL. That regex could be turned into a URL validator!