Steven Scaffidi
Steven Scaffidi
```javascript export const uploadFile = (file, path, singleFile = true, encoding = false) => new Promise((resolve, reject) => { if (!file || !path) { reject('no file'); } const uploadParams =...
This conversation was started here https://github.com/jlyman/RN-NavigationExperimental-Redux-Example/issues/20. I thought it was worth mentioning in this repo. Basically I'm reseting my navigation state every time I change to one of my 5...
This repo needs to be updated to use the latest version of FeathersJS. In addition, the repo should also update babel so that it can use React Fragments.
**Summary** The interface `EditorComponentOptions` does not match the documentation or usage. `toPreview` should be able to return a `JSX.Element`. Fields should be optional (for example, you create a component like...
How do you get the syntax to work with VSCode?  Rollup runs fine. Babel runs fine. Eslint runs fine. It's literally just VSCode....
### Is there an existing issue for this? - [X] I have searched the existing issues ### This issue exists in the latest npm version - [X] I am using...
Say we had something like this: ```html ``` ```js const routes = constructRoutes(document.querySelector('#single-spa-layout'), { errors: { defaultError: () => System.import('ui-error') }, ``` I need to pass a prop to my...
Hard-coding the node_modules path everywhere means that this plugin cannot work in the context of a monorepo. These changes fix this issue. Also fixes an issue with the types where...