add linking debug to bootstrap script

This commit is contained in:
Sebastian McKenzie 2015-07-14 21:11:43 +01:00
parent bfe92a4eea
commit 5e47530226

View File

@ -30,6 +30,7 @@ packages.forEach(function (root) {
if (!root.pkg.dependencies || !root.pkg.dependencies[sub.name]) return;
if (!fs.existsSync(nodeModulesLoc + "/" + sub.name)) {
console.log("Linking", "packages/" + sub.folder, "to", nodeModulesLoc + "/" + sub.name);
ln("-s", "packages/" + sub.folder, nodeModulesLoc + "/" + sub.name);
}
});