firefly-compiler 0.5.37 → 0.5.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/Path.ff +1 -0
- package/output/js/ff/core/Path.mjs +2 -0
- package/package.json +1 -1
- package/vscode/package.json +1 -1
package/core/Path.ff
CHANGED
|
@@ -167,6 +167,7 @@ extend self: Path {
|
|
|
167
167
|
file.path().copyTo(path.slash(file.path().relativeTo(self)), retries, retryDelay)
|
|
168
168
|
}
|
|
169
169
|
} elseIf {self.isSymbolicLink()} {
|
|
170
|
+
Log.debug("Copying link: " + path.absolutePath + " -> " + self.path(self.readSymbolicLink()).absolutePath)
|
|
170
171
|
path.createSymlinkTo(self.path(self.readSymbolicLink()), junction = True)
|
|
171
172
|
} else {
|
|
172
173
|
path.writeStream(self.readStream())
|
|
@@ -528,6 +528,7 @@ ff_core_Stream.Stream_each(ff_core_Path.Path_entries(self_), ((file_) => {
|
|
|
528
528
|
ff_core_Path.Path_copyTo(ff_core_Path.PathEntry_path(file_), ff_core_Path.Path_slash(path_, ff_core_Path.Path_relativeTo(ff_core_Path.PathEntry_path(file_), self_)), retries_, retryDelay_)
|
|
529
529
|
}))
|
|
530
530
|
} else if(ff_core_Path.Path_isSymbolicLink(self_)) {
|
|
531
|
+
ff_core_Log.debug_(((("Copying link: " + path_.absolutePath_) + " -> ") + ff_core_Path.Path_path(self_, ff_core_Path.Path_readSymbolicLink(self_)).absolutePath_));
|
|
531
532
|
ff_core_Path.Path_createSymlinkTo(path_, ff_core_Path.Path_path(self_, ff_core_Path.Path_readSymbolicLink(self_)), true)
|
|
532
533
|
} else {
|
|
533
534
|
ff_core_Path.Path_writeStream(path_, ff_core_Path.Path_readStream(self_), false)
|
|
@@ -829,6 +830,7 @@ if((await ff_core_Path.Path_exists$(path_, false, false, false, $task))) {
|
|
|
829
830
|
(await ff_core_Path.Path_copyTo$((await ff_core_Path.PathEntry_path$(file_, $task)), (await ff_core_Path.Path_slash$(path_, (await ff_core_Path.Path_relativeTo$((await ff_core_Path.PathEntry_path$(file_, $task)), self_, $task)), $task)), retries_, retryDelay_, $task))
|
|
830
831
|
}), $task))
|
|
831
832
|
} else if((await ff_core_Path.Path_isSymbolicLink$(self_, $task))) {
|
|
833
|
+
ff_core_Log.debug_(((("Copying link: " + path_.absolutePath_) + " -> ") + (await ff_core_Path.Path_path$(self_, (await ff_core_Path.Path_readSymbolicLink$(self_, $task)), $task)).absolutePath_));
|
|
832
834
|
(await ff_core_Path.Path_createSymlinkTo$(path_, (await ff_core_Path.Path_path$(self_, (await ff_core_Path.Path_readSymbolicLink$(self_, $task)), $task)), true, $task))
|
|
833
835
|
} else {
|
|
834
836
|
(await ff_core_Path.Path_writeStream$(path_, (await ff_core_Path.Path_readStream$(self_, $task)), false, $task))
|
package/package.json
CHANGED