Skip to content

Commit

Permalink
fix: upgrade dep, move repo
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Jul 11, 2020
1 parent 1103733 commit db98387
Show file tree
Hide file tree
Showing 11 changed files with 1,399 additions and 8,045 deletions.
15 changes: 3 additions & 12 deletions circle.yml → .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@ version: 2.1
jobs:
test:
docker:
- image: circleci/node:12
- image: circleci/node:14
- image: linuxserver/deluge
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm-install
command: npm ci
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ~/.npm
- run:
name: test
command: npm run test:ci
Expand All @@ -26,14 +20,11 @@ jobs:
command: bash <(curl -s https://codecov.io/bash)
release:
docker:
- image: circleci/node:12
- image: circleci/node:14
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm ci
- run: npm run build
- run: npm run semantic-release
- run: npx semantic-release

workflows:
version: 2
Expand Down
7 changes: 7 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"root": true,
"env": {
"node": true
},
"extends": ["@ctrl/eslint-config"]
}
22 changes: 0 additions & 22 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12
14
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# deluge [![npm](https://img.shields.io/npm/v/@ctrl/deluge.svg?maxAge=3600)](https://www.npmjs.com/package/@ctrl/deluge) [![CircleCI](https://circleci.com/gh/TypeCtrl/deluge.svg?style=svg)](https://circleci.com/gh/TypeCtrl/deluge) [![coverage status](https://codecov.io/gh/typectrl/deluge/branch/master/graph/badge.svg)](https://codecov.io/gh/typectrl/deluge)
# deluge [![npm](https://img.shields.io/npm/v/@ctrl/deluge.svg?maxAge=3600)](https://www.npmjs.com/package/@ctrl/deluge) [![CircleCI](https://circleci.com/gh/scttcper/deluge.svg?style=svg)](https://circleci.com/gh/scttcper/deluge) [![coverage status](https://codecov.io/gh/scttcper/deluge/branch/master/graph/badge.svg)](https://codecov.io/gh/scttcper/deluge)

> TypeScript api wrapper for [deluge](https://deluge-torrent.org/) using [got](https://github.com/sindresorhus/got)
Expand Down Expand Up @@ -26,7 +26,7 @@ async function main() {

### API

Docs: https://deluge.netlify.com/
Docs: https://deluge.vercel.app

### Normalized API
These functions have been normalized between torrent clients. Can easily support multiple torrent clients. See below for alternative supported torrent clients
Expand Down Expand Up @@ -71,7 +71,7 @@ console.log(res);
```

### See Also
transmission - https://github.com/TypeCtrl/transmission
qbittorrent - https://github.com/TypeCtrl/qbittorrent
utorrent - https://github.com/TypeCtrl/utorrent
rtorrent - https://github.com/TypeCtrl/rtorrent
transmission - https://github.com/scttcper/transmission
qbittorrent - https://github.com/scttcper/qbittorrent
utorrent - https://github.com/scttcper/utorrent
rtorrent - https://github.com/scttcper/rtorrent
Loading

0 comments on commit db98387

Please sign in to comment.