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 1
1
var compiler = require ( './compiler' ) ;
2
2
3
3
module . 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 ;
6
8
}
9
+ return compiler . runTypeScriptCompiler ( $logger , $projectData . projectDir ) ;
7
10
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript-dev-typescript" ,
3
- "version" : " 0.3.4 " ,
3
+ "version" : " 0.3.5 " ,
4
4
"description" : " TypeScript support for NativeScript projects. Install using `tns install typescript`." ,
5
5
"scripts" : {
6
6
"test" : " exit 0" ,
You can’t perform that action at this time.
0 commit comments