vendorfiles
v1.2.2
Published
A CLI tool to manage vendor files
Downloads
104
Maintainers
Readme
Vendorfiles
Vendorfiles is a versatile package manager that simplifies managing external dependencies from GitHub repositories. It handles installation, updates, and version control for various file types, from web assets to application binaries.
Key features:
- Flexible File Management: Install files from GitHub repositories or release assets
- Asset Extraction: Extract files from zipped or tarred release assets
- Version Control: Keep track of dependency versions, including support for commit-based versioning
- Multiple Config Formats: Use TOML, YAML, JSON, or package.json for configuration
- Custom File Placement: Specify custom paths for installed files
- GitHub Action: Automate updates with an integrated GitHub Action
- CLI Tool: User-friendly command line interface for easy dependency management
Whether you're a web developer streamlining asset management or a power user automating application updates, Vendorfiles offers a straightforward solution with robust version control.
Table of Contents
Installation
Global
npm install -g vendorfiles
Local
npm install vendorfiles
Configuration
Vendorfiles will look for a configuration file in the following order:
- vendor.toml
- vendor.yml
- vendor.yaml
- vendor.json
- package.json
To sync your vendor files with the config file, simply define your vendor files under the vendorDependencies
key in your config file and run the command vendor sync
.
The following examples are in JSON format, but you can also use TOML or YAML. For more examples, see the examples folder
{
"vendorDependencies": {
"Cooltipz": {
"version": "v2.2.0",
"repository": "https://github.com/jackdomleo7/Cooltipz.css",
"files": ["cooltipz.min.css", "LICENSE"]
},
"Coloris": {
"version": "v0.17.1",
"repository": "https://github.com/mdbassit/Coloris",
"files": ["dist/coloris.min.js", "dist/coloris.min.css", "LICENSE"]
}
}
}
By default, Vendorfiles will create a directory named vendor
in your project root.
You can change this by defining a vendorFolder
key in a vendorConfig
object:
"vendorConfig": {
"vendorFolder": "./my-vendors"
},
You can also define a vendorFolder
key in each dependency to change the folder where its files will be installed. if this key is not defined, the folder will default to the dependency's name.
This key can use the {vendorfolder}
placeholder to refer to the vendor folder defined in the vendorConfig
object.
{
"vendorConfig": {
"vendorFolder": "./my-vendors"
},
"vendorDependencies": {
"Cooltipz": {
"version": "v2.2.0",
"repository": "https://github.com/jackdomleo7/Cooltipz.css",
"files": ["cooltipz.min.css", "LICENSE"],
"vendorFolder": "{vendorFolder}/Cooltipz" // this will output the files in ./my-vendors/Cooltipz
},
"Coloris": {
"version": "v0.17.1",
"repository": "https://github.com/mdbassit/Coloris",
"files": ["dist/coloris.min.js", "dist/coloris.min.css", "LICENSE"],
"vendorFolder": "{vendorFolder}" // this will output the files inside ./my-vendors/
}
}
}
To rename or move files, you can specify an object with the source file as the key and the destination file as the value, as shown in the example below:
{
"vendorDependencies": {
"Cooltipz": {
"version": "v2.2.0",
"repository": "https://github.com/mdbassit/Coloris",
"files": [
"dist/coloris.min.js",
"dist/coloris.min.css",
{
"LICENSE": "../licenses/COLORIS_LICENSE"
}
]
}
}
}
Versioning Dependencies
This project uses GitHub releases to determine the version of a dependency. When a new release is made on GitHub, the version of the dependency in this project is updated accordingly, and the files are based on the tag of that release.
However, there is an optional hashVersionFile
key for each dependency that allows for a different versioning strategy. If hashVersionFile
is specified, the version is based on the latest commit hash of the file specified by hashVersionFile.
The hashVersionFile
key can be either:
A string: In this case, it should be the path to the file in the dependency repository. The version of the dependency will be the latest commit hash of this file.
A boolean: If
hashVersionFile
is set to true, the path of the first file provided in the file list for that dependency will be used. The version of the dependency will be the latest commit hash of this file.
This versioning strategy allows for more granular control over the version of a dependency, as it can be updated whenever a specific file in the dependency repository changes.
{
"vendorDependencies": {
"Cooltipz": {
"repository": "https://github.com/jackdomleo7/Cooltipz.css",
"version": "f6ec482ea395cead4fd849c05df6edd8da284a52",
"hashVersionFile": "package.json",
"files": ["cooltipz.min.css", "package.json"],
},
"Coloris": {
"repository": "https://github.com/mdbassit/Coloris",
"version": "v0.17.1",
"hashVersionFile": true,
"files": ["dist/coloris.min.js"],
}
}
}
in this example, the version of Cooltipz will be the latest commit hash of the
package.json
file, and the version of Coloris will be the latest commit hash of thedist/coloris.min.js
file.
GitHub Releases
You can download release assets by using the {release}/
placeholder in the file path.
Additionally, you can use the {version}
placeholder to refer to the semver version of the dependency, (without the trailing v
or -alpha
etc). Here's an example:
{
"vendorDependencies": {
"fzf": {
"version": "0.38.0",
"repository": "https://github.com/junegunn/fzf",
"files": [
"LICENSE",
"{release}/fzf-{version}-linux_amd64.tar.gz ",
{
"{release}/fzf-{version}-windows_amd64.zip": "fzf-windows.zip"
}
]
}
}
}
To extract files from a compressed release archive, you can define an object that specifies the archive path as the key and the files to extract as the value. Here's an example:
{
"vendorDependencies": {
"fzf": {
"version": "0.38.0",
"repository": "https://github.com/junegunn/fzf",
"files": [
"LICENSE",
{
"{release}/fzf-{version}-linux_amd64.tar.gz": [ "fzf" ],
"{release}/fzf-{version}-windows_amd64.zip": {
"fzf.exe": "my-custom-fzf.exe"
}
}
]
}
}
}
Default Configuration
For shared options across dependencies, use a default
object at the same level as vendorConfig
and vendorDependencies
. Here's an example:
vendorConfig:
vendorFolder: .
default:
vendorFolder: "{vendorFolder}"
repository: https://github.com/nushell/nu_scripts
hashVersionFile: true
vendorDependencies:
nu-winget-completions:
files: custom-completions/winget/winget-completions.nu
version: 912bea4588ba089aebe956349488e7f78e56061c
nu-cargo-completions:
files: custom-completions/cargo/cargo-completions.nu
version: afde2592a6254be7c14ccac520cb608bd1adbaf9
In this example, the default
object specifies the vendorFolder
, repository
, and hashVersionFile
options. These options will be applied to all dependencies listed under vendorDependencies
, unless they are overridden in the individual dependency configuration.
Commands
Usage: vendor command [options]
Commands:
sync|s [options] Sync config file
update|upgrade [names...] Update outdated dependencies
outdated|o List outdated dependencies
install|add [options] <url/name> [version] Install a dependency
uninstall|remove [names...] Uninstall dependencies
login|auth [token] Login to GitHub
help [command] display help for command
Options:
-dir, --folder [folder] Folder containing the config file
-v, --version output the current version
-h, --help display help for command
Sync
Usage: vendor sync|s [options]
Sync all dependencies in the config file
Options:
-f, --force Force sync
-h, --help display help for command
Examples:
vendor sync
vendor sync -f
Update
Usage: vendor update|upgrade [options] [names...]
Update all/selected dependencies to their latest version (the tag of the latest release)
Options:
-pr|--pr Output pull request text for gh action (default: false)
-h, --help display help for command
Examples:
vendor update
vendor bump React
vendor update React Express
Outdated
Usage: vendor outdated|o [options]
List outdated dependencies
Options:
-h, --help display help for command
Examples:
vendor outdated
vendor o
Install
Usage: vendor install|add [options] <url/name> [version]
Install a dependency. origin can be a GitHub repo URL or owner/repo format or name of repo to search for.
Files have to be provided with -f or --files <files...>
Arguments:
url/name GitHub repo URL or owner/repo format or name of repo to search for
version Version to install
Options:
-n, --name [name] Name to write in dependencies
-f, --files <files...> Files to install
-h, --help display help for command
Examples:
vendor install React -n MyReact -f README.md
vendor add Araxeus/vendorfiles v1.0.0 -f README.md LICENSE
vendor i https://github.com/th-ch/youtube-music -f "{release}/YouTube-Music-{version}.exe"
Uninstall
Usage: vendor uninstall|remove [options] [names...]
Uninstall all/selected dependencies
Arguments:
names Package names to uninstall
Options:
-h, --help display help for command
Examples:
vendor uninstall React
vendor remove React youtube-music
Login
Usage: vendor login|auth [options] [token]
Login to GitHub to increase rate limit
Arguments:
token GitHub token (leave empty to login via browser)
Options:
-h, --help display help for command
Examples:
vendor login
vendor auth <token>
GitHub Action
You can use the vendorfiles-action to automatically update your dependencies.
- uses: Araxeus/vendorfiles-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
package-manager: yarn
More information can be found in the action's readme.