I am having problems after adding Sass to an Angular2 NativeScript project.
I get ECONNRESET when I run: tns livesync ios --emulator --watch
I can reproduce this by creating a new project and add Sass. 1. Create a new project: tns create test-project --ng 2. tns install sass 3. Add three scss files _app-common.scss, app.android.scss, app.ios.scss, as described in http: // docs.nativescript.org/ui/theme#sass-usage .
The full error I get in the terminal: The NativeScript debugger encountered Error Domain = NSPOSIXErrorDomain Code = 9 "Bad file descriptor". Error: read ECONNRESET at export._errnoException (util.js: 1022: 11) in the TCP.onread file (net.js: 572: 26)
source
share