-
-
Notifications
You must be signed in to change notification settings - Fork 194
Closed
Labels
Description
UsbLiveSyncService
has a private array of excluded patterns:
private excludedProjectDirsAndFiles = [
"app_resources"
];
Some NPM modules (e.g. Angular2) are pretty huge and contain lots of unnecessary files (2432 files for Angular 2 at the time of this writing) which don't need to be synced to the device. We can speed initial syncs up by excluding files like *.ts, *.map, *.md, certain directories, etc.
It'd be great if we had some file, say .livesyncignore
where we can list exclusion patterns.