Skip to content

Commit

Permalink
Merge pull request #332 from kevin-greene-ck/typescript
Browse files Browse the repository at this point in the history
Refactor to use TypeScript and Promises
  • Loading branch information
mapleeit authored Oct 3, 2018
2 parents 670a1f1 + 88d4a19 commit 98e6da2
Show file tree
Hide file tree
Showing 43 changed files with 3,859 additions and 1,977 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
.DS_Store

# Dependencies
node_modules

# Build assets
dist

# Temp files
tmp
*.tmp

# Log files
log
*.log

# Generated files
/lib/
/test/
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: '2'
services:
memcached-one:
image: memcached:latest
ports:
- "11211:11211"

memcached-two:
image: memcached:latest
ports:
- "11212:11211"

memcached-three:
image: memcached:latest
ports:
- "11213:11211"
File renamed without changes
File renamed without changes.
1 change: 0 additions & 1 deletion index.js

This file was deleted.

135 changes: 0 additions & 135 deletions lib/connection.js

This file was deleted.

164 changes: 0 additions & 164 deletions lib/utils.js

This file was deleted.

5 changes: 5 additions & 0 deletions mocha.opts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--reporter spec
--exit
--full-trace
--timeout 10000
test/**/*.spec.js
Loading

0 comments on commit 98e6da2

Please sign in to comment.