firefly-compiler 0.5.37 → 0.5.38
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/compiler/Builder.ff
CHANGED
|
@@ -62,6 +62,7 @@ processIncludes(jsPathFile: Path, packagePath: Path, info: PackageInfo) {
|
|
|
62
62
|
info.includes.each {include =>
|
|
63
63
|
let fromPath = packagePath.slash(".firefly").slash("include").slash(include.path)
|
|
64
64
|
let toPath = jsPathFile.slash(info.package.packagePair.groupName("/")).slash(include.path)
|
|
65
|
+
Log.debug("Linking: " + fromPath.absolutePath + " -> " + toPath.absolutePath)
|
|
65
66
|
toPath.createSymlinkTo(fromPath, junction = True)
|
|
66
67
|
}
|
|
67
68
|
}
|
|
@@ -163,6 +163,7 @@ for(let for_a = info_.includes_, for_i = 0, for_l = for_a.length; for_i < for_l;
|
|
|
163
163
|
const include_ = for_a[for_i];
|
|
164
164
|
const fromPath_ = ff_core_Path.Path_slash(ff_core_Path.Path_slash(ff_core_Path.Path_slash(packagePath_, ".firefly"), "include"), include_.path_);
|
|
165
165
|
const toPath_ = ff_core_Path.Path_slash(ff_core_Path.Path_slash(jsPathFile_, ff_compiler_Syntax.PackagePair_groupName(info_.package_.packagePair_, "/")), include_.path_);
|
|
166
|
+
ff_core_Log.debug_(((("Linking: " + fromPath_.absolutePath_) + " -> ") + toPath_.absolutePath_));
|
|
166
167
|
ff_core_Path.Path_createSymlinkTo(toPath_, fromPath_, true)
|
|
167
168
|
}
|
|
168
169
|
}
|
|
@@ -385,6 +386,7 @@ for(let for_a = info_.includes_, for_i = 0, for_l = for_a.length; for_i < for_l;
|
|
|
385
386
|
const include_ = for_a[for_i];
|
|
386
387
|
const fromPath_ = (await ff_core_Path.Path_slash$((await ff_core_Path.Path_slash$((await ff_core_Path.Path_slash$(packagePath_, ".firefly", $task)), "include", $task)), include_.path_, $task));
|
|
387
388
|
const toPath_ = (await ff_core_Path.Path_slash$((await ff_core_Path.Path_slash$(jsPathFile_, ff_compiler_Syntax.PackagePair_groupName(info_.package_.packagePair_, "/"), $task)), include_.path_, $task));
|
|
389
|
+
ff_core_Log.debug_(((("Linking: " + fromPath_.absolutePath_) + " -> ") + toPath_.absolutePath_));
|
|
388
390
|
(await ff_core_Path.Path_createSymlinkTo$(toPath_, fromPath_, true, $task))
|
|
389
391
|
}
|
|
390
392
|
}
|
package/package.json
CHANGED