Skip to content

Commit

Permalink
Merge pull request #90 from JoinColony/maintenance/upgrade-deps
Browse files Browse the repository at this point in the history
Upgrade various dependencies
  • Loading branch information
Christian Maniewski committed Aug 15, 2019
2 parents 059c487 + 5704229 commit f130214
Show file tree
Hide file tree
Showing 6 changed files with 615 additions and 1,112 deletions.
10 changes: 4 additions & 6 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"linters": {
"src/**/*.ts": [
"eslint --fix",
"git add"
]
}
"src/**/*.ts": [
"eslint --fix",
"git add"
]
}
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,41 +29,41 @@
"author": "Christian Maniewski <chris@colony.io>",
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.4",
"@types/dotenv": "6.1.1",
"@types/lru-cache": "5.1.0",
"@types/node": "10.14.9",
"@types/sinon": "7.0.13",
"@types/yallist": "3.0.1",
"@typescript-eslint/eslint-plugin": "1.10.2",
"@typescript-eslint/parser": "1.10.2",
"ava": "2.1.0",
"eslint": "5.16.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "2.4.1",
"ipfsd-ctl": "0.43.0",
"lint-staged": "8.2.1",
"prettier": "1.18.2",
"sinon": "7.3.2",
"tap-xunit": "2.4.1",
"ts-node": "8.3.0",
"typescript": "3.5.3",
"wait-on": "3.3.0-beta.0"
"@types/debug": "^4.1.5",
"@types/dotenv": "^6.1.1",
"@types/lru-cache": "^5.1.0",
"@types/node": "^10.14.9",
"@types/sinon": "^7.0.13",
"@types/yallist": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"ava": "^2.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.3",
"ipfsd-ctl": "^0.43.0",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"sinon": "^7.4.1",
"tap-xunit": "^2.4.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"wait-on": "^3.3.0"
},
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^8.0.0",
"ipfs": "^0.36.4",
"ipfs-pubsub-peer-monitor": "^0.0.8",
"is-ipfs": "^0.6.0",
"is-ipfs": "^0.6.1",
"libp2p-webrtc-star": "^0.16.1",
"orbit-db": "^0.21.3",
"orbit-db": "^0.21.4",
"wrtc": "^0.4.1",
"yallist": "^3.0.3"
},
"resolutions": {
"leveldown": "5.1.0"
"leveldown": "5.1.1"
},
"ava": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/IPFSNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class IPFSNode {

private roomMonitor!: PeerMonitor;

public id: string = '';
public id = '';

constructor(
events: EventEmitter,
Expand Down
4 changes: 3 additions & 1 deletion src/PermissiveAccessController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ class PermissiveAccessController implements AccessControllers.AccessController {
return PermissiveAccessController.type;
}

public async load(): Promise<void> {}
public async load(): Promise<void> {
return;
}

public async grant(): Promise<boolean> {
return true;
Expand Down
1 change: 0 additions & 1 deletion src/__tests__/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { EntryData } from 'ipfs-log';
import PeerMonitor = require('ipfs-pubsub-peer-monitor');
import OrbitDB = require('orbit-db');
import OrbitDBKVStore from 'orbit-db-kvstore';
// @ts-ignore We don't want to type that right now
import { create as createIPFS } from 'ipfsd-ctl';

import Pinion, { ClientAction } from '../Pinion';
Expand Down
Loading

0 comments on commit f130214

Please sign in to comment.