Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
#TODO: use orphan gh-pages branch to publish docs
docs

## Origin: https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

## Origin: https://github.com/github/gitignore/blob/master/Node.gitignore
# Logs
logs
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v10.15.3
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
os:
- linux
- osx
Expand Down
8 changes: 8 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
preset: 'ts-jest',
setupFiles: [
'./test/setup/winston.ts'
],
clearMocks: true,
testEnvironment: 'node',
}
304 changes: 0 additions & 304 deletions lib/httpGetReader.js

This file was deleted.

7 changes: 0 additions & 7 deletions lib/index.js

This file was deleted.

Loading