Marián Hello
Marián Hello
you need to rebuild app too: npm run build
There is another suggestion in https://github.com/mauron85/cordova-plugin-background-geolocation-example/issues/16. I believe this is some kind of dependency issue, where two packages are using different versions of some dependency. Don't think I can do...
Basically guy used yarn instead of npm.
You probably ment there is no package-lock.json but yarn.lock. Anyway, there should be no need to have any of those lock files.. Apparently there is some dependency issue problem as...
Try to debug in Safari. Usually all errors, warning are trapped in JS Console. That might help you to identify what is causing your issue. You can also post those...
I believe I've seen this error. Try delete `node_modules` and install dependencies from scratch. EDIT: And also rebuild app.js (npm run build)
Yes www folder is intentionally empty. You need to build app: ``` npm install npm run build ``` Please read docs. Everything is there.
@LucaGabi your issue is different from 255 char limit. Just run quick test on Windows (which I normally don't use) and it's rimraf not recognizing glob syntax on windows correctly....
`npm run build` will run npm compile itself. Not sure why you have this problem.
oh in case of windows you're probably right. probably it failed becuase of missing SET. that explains why you had to run npm run compile as additional step.