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

Feat/update dependencies #7

Merged
merged 3 commits into from
Apr 18, 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
5 changes: 5 additions & 0 deletions .changeset/brave-rats-think.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'axe-reporter-html': minor
---

Update dependencies
1 change: 0 additions & 1 deletion .eslintignore
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Newer version of eslint does not use an .eslintignore file

This file was deleted.

1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"ignorePatterns": ["dist/"],
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use ignorePatterns instead of .eslintignore

"extends": ["widen", "widen/typescript"],
"overrides": [
{
Expand Down
823 changes: 0 additions & 823 deletions .yarn/releases/yarn-3.3.1.cjs

This file was deleted.

875 changes: 875 additions & 0 deletions .yarn/releases/yarn-3.8.1.cjs
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated to latest of version 3 but held off on yarn 4 for now.

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
nodeLinker: node-modules

npmRegistryServer: "https://registry.yarnpkg.com"

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://mskelton.dev/yarn-outdated/v3"

yarnPath: .yarn/releases/yarn-3.3.1.cjs
yarnPath: .yarn/releases/yarn-3.8.1.cjs
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Creates an HTML report from Axe results listing violations, passes, incomplete and incompatible results.",
"author": "Widen",
"license": "ISC",
"packageManager": "yarn@3.3.1",
"packageManager": "yarn@3.8.1",
"repository": "github:Widen/axe-reporter-html",
"homepage": "https://github.com/Widen/axe-reporter-html#readme",
"bugs": {
Expand Down Expand Up @@ -37,25 +37,25 @@
"release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@changesets/cli": "^2.26.0",
"@playwright/test": "^1.30.0",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.42.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-widen": "^1.1.0",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-sort": "^2.4.0",
"eslint-plugin-widen": "^1.0.0",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-widen": "^3.0.0",
"eslint-plugin-playwright": "^1.5.3",
"eslint-plugin-sort": "^3.0.2",
"eslint-plugin-widen": "^2.0.0",
"prettier": "^3.2.5",
"tsup": "^7.3.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/ejs": "^3.1.1",
"axe-core": "^4.6.3",
"ejs": "^3.1.8"
"@types/ejs": "^3.1.5",
"axe-core": "^4.9.0",
"ejs": "^3.1.10"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "nodenext",
"module": "NodeNext",
"target": "esnext",
"moduleResolution": "nodenext",
"noEmit": true,
Expand Down
Loading
Loading