Skip to content

Commit

Permalink
Dependency bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Nov 27, 2020
1 parent 2bfeb96 commit e7bc6a4
Show file tree
Hide file tree
Showing 4 changed files with 661 additions and 701 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@
],
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/sinonjs__fake-timers": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/sinonjs__fake-timers": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint": "^7.14.0",
"import-sort-style-eslint": "^6.0.0",
"mocha": "^8.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prettier-plugin-import-sort": "^0.0.4",
"rollup": "^2.17.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "^0.0.6",
"rollup": "^2.33.3",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"main": "lib/index.js",
"module": "es6/index.js",
Expand Down
2 changes: 1 addition & 1 deletion test/mutex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const mutexSuite = (factory: () => MutexInterface): void => {
new Promise((resolve) =>
setTimeout(() => {
flag = true;
resolve();
resolve(undefined);
}, 50)
)
);
Expand Down
2 changes: 1 addition & 1 deletion test/semaphore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const semaphoreSuite = (factory: () => SemaphoreInterface): void => {
new Promise((resolve) =>
setTimeout(() => {
flag = true;
resolve();
resolve(undefined);
}, 50)
)
);
Expand Down

0 comments on commit e7bc6a4

Please sign in to comment.