matthewmueller / joy

A delightful Go to Javascript compiler (ON HOLD)
https://mat.tm/joy
GNU General Public License v3.0
1.32k stars 35 forks source link

Using a package/dependency manager #72

Open pyrossh opened 6 years ago

pyrossh commented 6 years ago

Is just pulled the project and tried to run the tests. But then like most golang projects some dependencies are missing and I needed to manually pull them in like this.

all_test.go:16:2: cannot find package "github.com/sanity-io/litter" in any of:

It would be great if we could use a package/dependency manager like dep (which is going to be official) to manage dependencies and version them as it becomes easier for more people to work the this project and not have version clashes.

matthewmueller commented 6 years ago

Agreed. I tried dep, but I wasn't able to get it working after about an hour of futzing. Would love some help on that.