We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running tns livesync android --watch --log trace on the angular todomvc project ends up with an endles file change -> prepare -> compile -> file change -> prepare ... loop.
tns livesync android --watch --log trace
To reproduce, clone the project, add a platform, and run the command above: https://github.com/NativeScript/sample-ng-todomvc
The text was updated successfully, but these errors were encountered:
The problem is in https://github.com/NativeScript/sample-ng-todomvc/blob/master/hooks/before-prepare/10-fix-zone-typings.js hook.
https://github.com/NativeScript/sample-ng-todomvc/blob/master/hooks/before-prepare/10-fix-zone-typings.js
The code that fixes the problem is:
if (!$usbLiveSyncService.isInitialized) { var zoneDts = path.join('node_modules', 'angular2', 'typings', 'zone', 'zone.d.ts'); shelljs.sed('-i', /.*reference.*path.*es6-shim.*\n/g, '', zoneDts); }
Sorry, something went wrong.
Fatme
No branches or pull requests
Running
tns livesync android --watch --log trace
on the angular todomvc project ends up with an endles file change -> prepare -> compile -> file change -> prepare ... loop.To reproduce, clone the project, add a platform, and run the command above:
https://github.com/NativeScript/sample-ng-todomvc
The text was updated successfully, but these errors were encountered: