File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class BroccoliTypeScriptCompiler extends Plugin {
78
78
this . _fileRegistry [ tsFilePath ] . outputs . forEach ( absoluteFilePath => {
79
79
const outputFilePath = absoluteFilePath . replace ( this . cachePath , this . outputPath ) ;
80
80
fse . mkdirsSync ( path . dirname ( outputFilePath ) ) ;
81
- fs . linkSync ( absoluteFilePath , outputFilePath ) ;
81
+ fs . symlinkSync ( absoluteFilePath , outputFilePath ) ;
82
82
} ) ;
83
83
} else {
84
84
this . _fileRegistry [ tsFilePath ] . version = entry . mtime ;
@@ -202,7 +202,7 @@ class BroccoliTypeScriptCompiler extends Plugin {
202
202
fs . writeFileSync ( absoluteFilePath , content , FS_OPTS ) ;
203
203
204
204
fse . mkdirsSync ( path . dirname ( outputFilePath ) ) ;
205
- fs . linkSync ( absoluteFilePath , outputFilePath ) ;
205
+ fs . symlinkSync ( absoluteFilePath , outputFilePath ) ;
206
206
}
207
207
208
208
_addNewFileEntry ( entry , checkDuplicates /* = true */ ) {
@@ -314,7 +314,7 @@ class CustomLanguageServiceHost {
314
314
getCurrentDirectory ( ) {
315
315
return this . currentDirectory ;
316
316
}
317
-
317
+
318
318
getCompilationSettings ( ) {
319
319
return this . compilerOptions ;
320
320
}
You can’t perform that action at this time.
0 commit comments