Skip to content

Commit

Permalink
build(deps-dev): cleanup + upgrade deps
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Nov 22, 2022
1 parent 4e378bf commit 9a88b44
Show file tree
Hide file tree
Showing 3 changed files with 1,153 additions and 920 deletions.
2 changes: 2 additions & 0 deletions __tests__/reporters/notifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ class Notifier implements Reporter {
*/
protected tests(tasks: OneOrMany<Task> = []): Test[] {
return (Array.isArray(tasks) ? tasks : [tasks]).flatMap(task => {
if (task.type === 'benchmark' || task.type === 'typecheck') return []

return task.type === 'test'
? [task]
: task.tasks.flatMap(t => (t.type === 'test' ? [t] : this.tests(t)))
Expand Down
65 changes: 32 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,67 +60,67 @@
},
"devDependencies": {
"@actions/core": "1.9.1",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@commitlint/types": "17.0.0",
"@faker-js/faker": "7.4.0",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@faker-js/faker": "7.6.0",
"@flex-development/dist-tag": "2.0.0",
"@flex-development/mkbuild": "1.0.0-alpha.3",
"@flex-development/tutils": "5.0.0",
"@graphql-eslint/eslint-plugin": "3.10.7",
"@types/chai": "4.3.3",
"@flex-development/mkbuild": "1.0.0-alpha.9",
"@flex-development/tutils": "5.0.1",
"@graphql-eslint/eslint-plugin": "3.13.1",
"@types/chai": "4.3.4",
"@types/conventional-changelog": "3.1.1",
"@types/conventional-changelog-config-spec": "2.1.1",
"@types/conventional-changelog-config-spec": "2.1.2",
"@types/conventional-changelog-writer": "4.0.1",
"@types/conventional-commits-parser": "3.0.2",
"@types/dateformat": "5.0.0",
"@types/eslint": "8.4.6",
"@types/eslint": "8.4.10",
"@types/git-raw-commits": "2.0.1",
"@types/is-ci": "3.0.0",
"@types/node-notifier": "8.0.2",
"@types/prettier": "2.7.0",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"@types/prettier": "2.7.1",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"@vates/toggle-scripts": "1.0.0",
"@vitest/coverage-c8": "0.22.1",
"@vitest/ui": "0.22.1",
"chai": "4.3.6",
"@vitest/coverage-c8": "0.25.2",
"@vitest/ui": "0.25.2",
"chai": "4.3.7",
"conventional-changelog-cli": "2.2.2",
"conventional-recommended-bump": "6.1.0",
"cspell": "6.6.1",
"esbuild": "0.15.9",
"eslint": "8.21.0",
"cspell": "6.14.3",
"esbuild": "0.15.15",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-jsonc": "2.3.1",
"eslint-plugin-jsdoc": "39.6.2",
"eslint-plugin-jsonc": "2.5.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-markdownlint": "0.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "43.0.2",
"eslint-plugin-yml": "1.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "45.0.0",
"eslint-plugin-yml": "1.2.0",
"graphql": "16.6.0",
"growl": "1.10.5",
"husky": "8.0.1",
"husky": "8.0.2",
"is-ci": "3.0.1",
"jsonc-eslint-parser": "2.1.0",
"lint-staged": "13.0.3",
"node-notifier": "10.0.1",
"prettier": "2.7.1",
"prettier-plugin-sh": "0.12.8",
"pretty-format": "28.1.3",
"pretty-format": "29.3.1",
"trash-cli": "5.0.0",
"ts-dedent": "2.2.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.2",
"typescript": "4.9.3",
"version-bump-prompt": "6.1.0",
"vite-tsconfig-paths": "3.5.0",
"vitest": "0.22.1",
"vitest-github-actions-reporter": "0.8.1",
"vite": "3.2.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.2",
"vitest-github-actions-reporter": "0.9.0",
"yaml-eslint-parser": "1.1.0"
},
"bundleDependencies": [
Expand All @@ -129,9 +129,8 @@
],
"resolutions": {
"@ardatan/sync-fetch": "larsgw/sync-fetch#head=worker_threads",
"esbuild": "0.15.9",
"typescript": "4.8.2",
"vite": "3.1.3"
"esbuild": "0.15.15",
"typescript": "4.9.3"
},
"engines": {
"node": ">=16",
Expand Down
Loading

0 comments on commit 9a88b44

Please sign in to comment.