#Unity Asset sync
Allows safe, effective sharing of code between Unity projects.
npm install unity-asset-sync
var sync = require("unity-asset-sync");
sync.allFiles("sourceDir", "targetDir");
Creates a symlink in the targetDir for each file in the sourceDir. Skips all
folders, and README.md
files.
I made this so I could share scripts from my home-grown framework between projects. I've only used it on OSX.