Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Krivega committed Jan 18, 2022
1 parent 69f440f commit a7b0c4f
Show file tree
Hide file tree
Showing 4 changed files with 1,270 additions and 1,114 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"sourceType": "module",
"tsconfigRootDir": "."
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "prettier"],
"extends": ["plugin:jest/recommended", "airbnb-base", "airbnb-typescript/base", "prettier"],
"plugins": ["jest", "prettier", "@typescript-eslint"],
"env": {
"browser": true
Expand Down
40 changes: 21 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,33 +38,35 @@
"test": "jest"
},
"dependencies": {
"sequent-promises": "^0.1.3"
"sequent-promises": "^0.1.4"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"jest": "27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"promise-delay": "^2.1.0",
"rollup": "^2.59.0",
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.30.0",
"rollup-plugin-typescript2": "0.31.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
},
"main:src": "src/index.ts",
"standard-version": {
Expand All @@ -73,4 +75,4 @@
"postchangelog": "prettier --write \"CHANGELOG.md\""
}
}
}
}
2 changes: 1 addition & 1 deletion src/__tests__/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('toLocaleDateString', () => {
const resultAfter2 = stackPromises.add(request2)();

return Promise.allSettled([resultAfter1, resultAfter2]).then((args) => {
//@ts-ignore
// @ts-ignore
const [{ reason }, { value }] = args;

expect(isPromiseIsNotActualError(reason)).toBe(true);
Expand Down
Loading

0 comments on commit a7b0c4f

Please sign in to comment.