dep
dep copied to clipboard
Allow specifying different formats for full name
Any plans on allowing something like this?
require "dep" {
"https://github.com/user/package",
"/some/absolute/path/package",
}
You can override the clone URL like this, but the package ID still needs to be in the user/package format:
require "dep" {
{
"user/package",
url = "https://github.com/user/package" -- or some other git host
}
}
As for cloning a package from the local filesystem, I believe Git is already able to do this but I haven't tested this yet.