Haz
Haz
Maybe we can add a npm script to automatically add files to `index.js` to be ran concurrently with `npm start`/`npm run dev` in watch mode?
I was thinking about how would look a generic CLI to completely replace our usage of `require.context`. While I was writing I realized that it was becoming overkill. Well, I...
@declanelcocks No, that's just an interface idea for a possible library.
@ghalex `require.context` doesn't work with `jest`. That's one of the reasons we mock all components except the one being tested. https://github.com/diegohaz/arc/blob/master/private/jest/componentsMock.js
Maybe we can add an `include` on `splitVendor`? ```js const bigLibs = ['react', 'redux'] splitVendor({ name: 'vendor1', exclude: bigLibs }) splitVendor({ name: 'vendor2', include: bigLibs }) ``` Not sure if...
Also, #287 can help optimizing bundle size
Hey. Would you like to make a PR so we can see it working?
I just want to add that phrasal verbs are hard. 😆 Learning phrasal verbs in English is somehow similar to learn Kanji in Japanese to me.
@kbzowski It parses and validates the request body based on a schema. FYI, I'm working on a new project that will replace querymen and bodymen with a pretty similar API:...
@chemitaxis Thank you for reporting. This is a known problem, but not very easy to fix. FYI, I'm working on a new library to replace `querymen`, `bodymen` and `rich-param`. That...