Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies & remove ESLint & convert to ESM 🙈 #117

Merged
merged 3 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

52 changes: 0 additions & 52 deletions .eslintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,3 @@ jobs:

- name: Prettier
run: yarn run format-check

- name: ESLint
run: yarn run lint
21 changes: 9 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn run build && yarn run format && yarn run lint && yarn test"
"all": "yarn run build && yarn run format && yarn test"
},
"type": "module",
"packageManager": "[email protected]",
"repository": {
"type": "git",
Expand All @@ -29,17 +29,14 @@
},
"homepage": "https://github.com/redhat-plumbers-in-action/testing-farm#readme",
"dependencies": {
"axios": "^1.6.7",
"zod": "^3.22.4"
"axios": "1.6.8",
"zod": "3.23.4"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/coverage-v8": "^1.3.0",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
"@types/node": "20.12.7",
"@vitest/coverage-v8": "1.5.2",
"prettier": "3.2.5",
"typescript": "5.4.5",
"vitest": "1.5.2"
}
}
Loading