Skip to content

Commit

Permalink
chore(deps-dev): bump eslint-plugin-prettier from 4.2.1 to 5.0.0
Browse files Browse the repository at this point in the history
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 4.2.1 to 5.0.0.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v4.2.1...v5.0.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and dannycalleri committed Sep 21, 2023
1 parent 8f61bba commit ab81418
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 55 deletions.
4 changes: 2 additions & 2 deletions ember-autofocus-modifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^10.5.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"release-it": "^15.11.0",
"rollup": "^2.67.0",
"rollup-plugin-copy": "^3.4.0"
Expand Down
4 changes: 2 additions & 2 deletions ember-autofocus-modifier/src/modifiers/autofocus.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default modifier(
element.isContentEditable ||
element.hasAttribute("aria-disabled") ||
element.hasAttribute("href") ||
element.hasAttribute("tabindex")
element.hasAttribute("tabindex"),
);

/**
Expand Down Expand Up @@ -66,5 +66,5 @@ export default modifier(
}
};
},
{ eager: false }
{ eager: false },
);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^4.0.0",
"concurrently": "^8.2.1",
"prettier": "^2.5.1",
"prettier": "^3.0.3",
"release-it": "^15.11.0"
},
"engines": {
Expand Down
99 changes: 53 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
"eslint-plugin-ember": "11.7.1",
"eslint-plugin-n": "16.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-qunit": "7.3.4",
"lerna-changelog": "2.2.0",
"loader.js": "4.7.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier": "3.0.3",
"qunit": "2.19.4",
"qunit-dom": "2.0.0",
"release-it": "15.11.0",
Expand Down
4 changes: 2 additions & 2 deletions test-app/tests/integration/modifiers/autofocus-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ module('Integration | Modifier | autofocus', function (hooks) {
Foo: {{this.bar}}
</button>
`,
FooButtonComponent
FooButtonComponent,
);
this.owner.register('component:foo-button', FooButtonComponent);

Expand Down Expand Up @@ -322,7 +322,7 @@ module('Integration | Modifier | autofocus', function (hooks) {
};

await render(
hbs`<button type="button" aria-disabled="true" {{autofocus}}></button>`
hbs`<button type="button" aria-disabled="true" {{autofocus}}></button>`,
);
assertElement('[aria-disabled]');

Expand Down

0 comments on commit ab81418

Please sign in to comment.