File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11var compiler = require ( './compiler' ) ;
22
33module . exports = function ( $logger , $projectData , $usbLiveSyncService ) {
4- if ( ! $usbLiveSyncService . isInitialized ) {
5- return compiler . runTypeScriptCompiler ( $logger , $projectData . projectDir ) ;
4+ var liveSync = $usbLiveSyncService . isInitialized ;
5+ var bundle = $projectData . $options . bundle ;
6+ if ( liveSync || bundle ) {
7+ return ;
68 }
9+ return compiler . runTypeScriptCompiler ( $logger , $projectData . projectDir ) ;
710}
Original file line number Diff line number Diff line change 11{
22 "name" : " nativescript-dev-typescript" ,
3- "version" : " 0.3.4 " ,
3+ "version" : " 0.3.5 " ,
44 "description" : " TypeScript support for NativeScript projects. Install using `tns install typescript`." ,
55 "scripts" : {
66 "test" : " exit 0" ,
You can’t perform that action at this time.
0 commit comments