-
Notifications
You must be signed in to change notification settings - Fork 3
/
.veendor.js
39 lines (37 loc) · 846 Bytes
/
.veendor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
const path = require('path');
module.exports = {
backends: [
{
alias: 'local',
push: true,
backend: 'local',
options: {
directory: path.resolve(process.env.HOME, '.veendor-local')
}
},
{
alias: 's3',
push: true,
backend: 's3',
options: {
bucket: 'mcornholio-s3',
}
},
{
alias: 'github',
push: true,
backend: 'git-lfs',
options: {
checkLfsAvailability: true,
repo: '[email protected]:mutantcornholio/veendor-vendors.git'
}
}
],
useGitHistory: {
depth: 5
},
packageHash: {
suffix: process.platform
}
};