lmieulet
lmieulet
I would be interested too.
I found a solution [from there](https://github.com/janis-rasa/react-wizard-form/blob/08763d3b464f44bd5610871166ebfecb7ccf73cc/src/components/FieldHidden/FieldHidden.tsx#L16) (I've just search over all occurence of FieldArrayRenderProps on github...) ``` // consummer: // my custom compo interface Props { label: string; keyLabel: string;...
We have an issue with `2.0.0-beta.0` : ``` WEBPACK Compiled successfully in 91543ms MOCHA Testing... RUNTIME EXCEPTION Exception occurred while loading your tests /home/lmieulet/CS/rs-frontend/webapp/.tmp/mocha-webpack/1532524466689/css/styles.css:11 small, strike, strong, sub, sup, tt,...
Ok I found a workaround. ``` use: [ MiniCssExtractPlugin.loader, 'css-loader', ], ``` becomes ``` use: mode !== 'test' ? [ MiniCssExtractPlugin.loader, 'css-loader', ] : ['css-loader'], ```
We're using Webpack DLL on our project and they are a must when your project scales. You first need to create the DLL, then when you start/test/coverage/build your app, some...
Do you have a configuration file `webpack.test.config.js` like that ? ``` { target: 'node', // in order to ignore built-in modules like path, fs, etc. externals: [nodeExternals({ // this WILL...
No, you can compile your DLL correctly (it works when used with webpack-dev-server) but while testing it fails to import it. It happens too on webpack-dev-server, it fails to import...
Still have some issue with file change, sometimes some tests are not re-run. Some co-workers are not using `watch` anymore... (with `v1.0.0-beta.1` and our 700 tests)
Yes we use it without any trouble. Our code is not fresh but is here : https://github.com/RegardsOss/regards-frontend/
Thanks for these informations ! I managed to get the same certificate on both side... ! On the Koding server : ``` cat /opt/koding/generated/private_keys/kontrol/kontrol.pub -----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAunK/xtLUoHrYU3/9AJiU [..] -----END...