File tree Expand file tree Collapse file tree 6 files changed +13
-14
lines changed Expand file tree Collapse file tree 6 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - 11
3
+ - 12
4
4
- 10
5
5
install : yarn
6
6
before_script :
Original file line number Diff line number Diff line change 1
- const { default : del } = require ( 'del' ) ;
1
+ const del = require ( 'del' ) ;
2
2
const gulp = require ( 'gulp' ) ;
3
3
const ts = require ( 'gulp-typescript' ) ;
4
4
const tslint = require ( 'gulp-tslint' ) ;
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ git clone $REPO dist -b $TARGET_BRANCH
19
19
20
20
yarn gh:build
21
21
22
- rsync --delete-before --exclude= ' .git ' --exclude= ' .nojekyll ' - avh docs/ dist/
22
+ rsync --delete-before -avh docs/master dist/
23
23
24
24
cd dist
25
25
git add --all .
26
26
git config user.name " Travis CI"
27
27
git config user.email " ${COMMIT_EMAIL} "
28
- git commit -m " Build: ${SHA} " || true
28
+ git commit -m " Build: [MASTER] ${SHA} " || true
29
29
git push " https://${GITHUB_TOKEN} @github.com/gazmull/discord-paginationembed.git" $TARGET_BRANCH
Original file line number Diff line number Diff line change 43
43
"discord.js" : " github:discordjs/discord.js"
44
44
},
45
45
"devDependencies" : {
46
- "@types/node" : " ^11.13.7 " ,
47
- "del" : " ^4.1 .0" ,
48
- "gulp" : " ^4.0.1 " ,
49
- "gulp-terser" : " ^1.1.7 " ,
46
+ "@types/node" : " ^12.6.8 " ,
47
+ "del" : " ^5.0 .0" ,
48
+ "gulp" : " ^4.0.2 " ,
49
+ "gulp-terser" : " ^1.2.0 " ,
50
50
"gulp-tslint" : " ^8.1.4" ,
51
51
"gulp-typescript" : " ^5.0.1" ,
52
- "tslint" : " ^5.16 .0" ,
52
+ "tslint" : " ^5.18 .0" ,
53
53
"tslint-eslint-rules" : " ^5.4.0" ,
54
- "typedoc" : " ^0.14.2 " ,
55
- "typedoc-plugin-no-inherit" : " ^1.1.6 " ,
56
- "typescript" : " ^3.4.5 "
54
+ "typedoc" : " ^0.15.0 " ,
55
+ "typedoc-plugin-no-inherit" : " ^1.1.9 " ,
56
+ "typescript" : " ^3.5.3 "
57
57
}
58
58
}
Original file line number Diff line number Diff line change 8
8
"noUnusedLocals" : true ,
9
9
"outDir" : " bin" ,
10
10
"removeComments" : false ,
11
- "incremental" : true ,
12
11
"target" : " es2017"
13
12
},
14
13
"include" : [
Original file line number Diff line number Diff line change 4
4
"includeDeclarations" : true ,
5
5
"mode" : " file" ,
6
6
"name" : " Discord PaginationEmbed - Docs" ,
7
- "out" : " docs" ,
7
+ "out" : " docs/master " ,
8
8
"readme" : " README.md" ,
9
9
"theme" : " default"
10
10
}
You can’t perform that action at this time.
0 commit comments