Skip to content

Commit

Permalink
通知システムにリトライ機構を追加 (#24)
Browse files Browse the repository at this point in the history
* refactor: Make subscription readonly

* feat: Add retry

* deps: Bump dependencies

* fix: Fix lint config

* fix: Fix lint script

* fix: Fix lint errors

* test: Fix test codes
  • Loading branch information
MikuroXina authored Jul 18, 2021
1 parent c0033f8 commit 4922dfc
Show file tree
Hide file tree
Showing 26 changed files with 4,196 additions and 7,031 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/react",
"prettier/@typescript-eslint"
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand Down
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,36 @@
"start:web": "next start ./src/web",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore --ignore-path .eslintignore ./src/",
"lint:fix": "npm run lint --fix"
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"faunadb": "^3.0.1",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"faunadb": "^4.3.0",
"mutex-promise": "^0.1.0",
"next": "^9.5.5",
"next": "^11.0.1",
"node-fetch": "^2.6.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.8",
"@types/react": "^16.14.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"esbuild": "^0.7.22",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@types/node-fetch": "^2.5.11",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"esbuild": "^0.12.15",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}
}
Loading

0 comments on commit 4922dfc

Please sign in to comment.