Skip to content

Commit c7c7abf

Browse files
committed
Chore: Update Tools and Deps
1 parent 91ba313 commit c7c7abf

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- 11
3+
- 12
44
- 10
55
install: yarn
66
before_script:

Gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { default: del } = require('del');
1+
const del = require('del');
22
const gulp = require('gulp');
33
const ts = require('gulp-typescript');
44
const tslint = require('gulp-tslint');

deploy/travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ git clone $REPO dist -b $TARGET_BRANCH
1919

2020
yarn gh:build
2121

22-
rsync --delete-before --exclude='.git' --exclude='.nojekyll' -avh docs/ dist/
22+
rsync --delete-before -avh docs/master dist/
2323

2424
cd dist
2525
git add --all .
2626
git config user.name "Travis CI"
2727
git config user.email "${COMMIT_EMAIL}"
28-
git commit -m "Build: ${SHA}" || true
28+
git commit -m "Build: [MASTER] ${SHA}" || true
2929
git push "https://${GITHUB_TOKEN}@github.com/gazmull/discord-paginationembed.git" $TARGET_BRANCH

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@
4343
"discord.js": "github:discordjs/discord.js"
4444
},
4545
"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",
5050
"gulp-tslint": "^8.1.4",
5151
"gulp-typescript": "^5.0.1",
52-
"tslint": "^5.16.0",
52+
"tslint": "^5.18.0",
5353
"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"
5757
}
5858
}

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"noUnusedLocals": true,
99
"outDir": "bin",
1010
"removeComments": false,
11-
"incremental": true,
1211
"target": "es2017"
1312
},
1413
"include": [

typedoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"includeDeclarations": true,
55
"mode": "file",
66
"name": "Discord PaginationEmbed - Docs",
7-
"out": "docs",
7+
"out": "docs/master",
88
"readme": "README.md",
99
"theme": "default"
1010
}

0 commit comments

Comments
 (0)