Skip to content

Commit db98387

Browse files
committed
fix: upgrade dep, move repo
1 parent 1103733 commit db98387

11 files changed

+1399
-8045
lines changed

Diff for: circle.yml renamed to .circleci/config.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,13 @@ version: 2.1
22
jobs:
33
test:
44
docker:
5-
- image: circleci/node:12
5+
- image: circleci/node:14
66
- image: linuxserver/deluge
77
steps:
88
- checkout
9-
- restore_cache:
10-
key: dependency-cache-{{ checksum "package-lock.json" }}
119
- run:
1210
name: npm-install
1311
command: npm ci
14-
- save_cache:
15-
key: dependency-cache-{{ checksum "package-lock.json" }}
16-
paths:
17-
- ~/.npm
1812
- run:
1913
name: test
2014
command: npm run test:ci
@@ -26,14 +20,11 @@ jobs:
2620
command: bash <(curl -s https://codecov.io/bash)
2721
release:
2822
docker:
29-
- image: circleci/node:12
23+
- image: circleci/node:14
3024
steps:
3125
- checkout
32-
- restore_cache:
33-
key: dependency-cache-{{ checksum "package-lock.json" }}
3426
- run: npm ci
35-
- run: npm run build
36-
- run: npm run semantic-release
27+
- run: npx semantic-release
3728

3829
workflows:
3930
version: 2

Diff for: .eslintrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"node": true
5+
},
6+
"extends": ["@ctrl/eslint-config"]
7+
}

Diff for: .eslintrc.js

-22
This file was deleted.

Diff for: .nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12
1+
14

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 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)
1+
# 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)
22

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

2727
### API
2828

29-
Docs: https://deluge.netlify.com/
29+
Docs: https://deluge.vercel.app
3030

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

7373
### See Also
74-
transmission - https://github.com/TypeCtrl/transmission
75-
qbittorrent - https://github.com/TypeCtrl/qbittorrent
76-
utorrent - https://github.com/TypeCtrl/utorrent
77-
rtorrent - https://github.com/TypeCtrl/rtorrent
74+
transmission - https://github.com/scttcper/transmission
75+
qbittorrent - https://github.com/scttcper/qbittorrent
76+
utorrent - https://github.com/scttcper/utorrent
77+
rtorrent - https://github.com/scttcper/rtorrent

0 commit comments

Comments
 (0)