veendor
Version:
a tool for stroing your npm dependencies in arbitraty storage
32 lines (29 loc) • 671 B
JavaScript
;
const path = require('path');
module.exports = {
backends: [
{
alias: 'local',
push: true,
backend: 'local',
options: {
directory: path.resolve(process.env.HOME, '.veendor-local')
}
},
{
alias: 'github',
push: true,
backend: 'git-lfs',
options: {
checkLfsAvailability: true,
repo: 'git@github.com:mutantcornholio/veendor-vendors.git'
}
}
],
useGitHistory: {
depth: 5
},
packageHash: {
suffix: process.platform
}
};