Thorak
Thorak
Resolved pack errors by changing ``` "electron-pack": "build -c.extraMetadata.main=build/electron.js", ``` to ``` "electron-pack": "build -c.extraMetadata.main=./index.electron.js", ``` Screen still blank. Upon opening the build folder and running the index.html file locally...
So my white screen appears to have been an issue with `react-router` It would appear that `BrowserHistory` wont work with electron so I had to change to `HashHistory`
> Can you provide a pull-request with your changes to have a record of them? To be honest I don't know how this repo is put together to even decide...
For our router issues - well we use react-navigation for RN as it has better animations and router handling than react-native-router. Basically our entire team thought react-native-router was kinda crap...
For our jest testing we found that the tests would lock up on us all the time so we changed `package.json` to be ``` "test": "npm run test:native && npm...
Also we use react-native-elements (as I think a lot of people do) so we had to add the following to the `webpack.config.xxxxx.js` to the `include` below line 285 ``` //...
Oh and one more... we found we had to change `babel.config.js` to ``` module.exports = function (api) { api.cache(true); return { presets: [['module:metro-react-native-babel-preset'], ['react-app']], ignore: ['node_modules/art/core/color.js'], plugins: [ ['module-resolver', {...
> The `re-start` template is obsolete, the new build process is to install the `re-base` template and all the customized ones on top of it, and after that exec the...
Even if you can guide me on how to use `--detectOpenHandles` I cant seem to run just jest as I keep getting `ReferenceError: babelHelpers is not defined` on every test
So for anyone following this I hacked this to solve my issue for now. I decided to just go around the entire re-start setup to solve the issue. It was...