Skip to content

Commit

Permalink
chore(deps-dev): bump the lint group across 1 directory with 6 updates (
Browse files Browse the repository at this point in the history
#631)

* chore(deps-dev): bump the lint group across 1 directory with 6 updates

Bumps the lint group with 6 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [ember-template-lint](https://github.com/ember-template-lint/ember-template-lint) | `6.0.0` | `7.0.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.0.1` | `10.0.2` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.15.1` | `17.16.1` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.5.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.9` | `0.6.11` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.14.1` | `16.15.0` |



Updates `ember-template-lint` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/ember-template-lint/ember-template-lint/releases)
- [Changelog](https://github.com/ember-template-lint/ember-template-lint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ember-template-lint/ember-template-lint/commits)

Updates `eslint-config-prettier` from 10.0.1 to 10.0.2
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.0.1...v10.0.2)

Updates `eslint-plugin-n` from 17.15.1 to 17.16.1
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.15.1...v17.16.1)

Updates `prettier` from 3.0.3 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.0.3...3.5.3)

Updates `prettier-plugin-tailwindcss` from 0.6.9 to 0.6.11
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.6.9...v0.6.11)

Updates `stylelint` from 16.14.1 to 16.15.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.14.1...16.15.0)

---
updated-dependencies:
- dependency-name: ember-template-lint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: lint
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: lint
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix(frontend): fix git dependency gebastel in pnpm-lock

* chore(frontend): linted && formatted

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Arthur Deierlein <[email protected]>
  • Loading branch information
dependabot[bot] and c0rydoras authored Mar 3, 2025
1 parent b0f9691 commit 6424aaf
Show file tree
Hide file tree
Showing 3 changed files with 474 additions and 465 deletions.
6 changes: 3 additions & 3 deletions frontend/app/components/task-selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default class TaskSelectionComponent extends Component {
get customer() {
// Without unwrapping of the proxy ember-power-select will stick to wrong reference after clearing
return this.args.liveTracking
? this.tracking.activeCustomer?.content ?? this._customer
? (this.tracking.activeCustomer?.content ?? this._customer)
: this._customer;
}

Expand All @@ -199,7 +199,7 @@ export default class TaskSelectionComponent extends Component {
get project() {
// Without unwrapping of the proxy ember-power-select will stick to wrong reference after clearing
return this.args.liveTracking
? this.tracking.activeProject?.content ?? this._project
? (this.tracking.activeProject?.content ?? this._project)
: this._project;
}

Expand All @@ -211,7 +211,7 @@ export default class TaskSelectionComponent extends Component {
*/
get task() {
return this.args.liveTracking
? this.tracking.activeTask?.content ?? this._task
? (this.tracking.activeTask?.content ?? this._task)
: this._task;
}

Expand Down
12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@
"ember-sinon-qunit": "^6.0.0",
"ember-source": "~5.4.0",
"ember-style-modifier": "^1.0.0",
"ember-template-lint": "~6.0.0",
"ember-template-lint": "~7.0.0",
"ember-template-lint-plugin-prettier": "^5.0.0",
"ember-test-selectors": "6.0.0",
"ember-tether": "3.1.0",
"ember-truth-helpers": "3.1.1",
"ember-validated-form": "7.0.1",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-ember": "12.5.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-n": "17.16.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-qunit": "8.1.2",
"faker": "4.1.0",
Expand All @@ -120,14 +120,14 @@
"moment": "^2.30.1",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "~3.0.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"prettier": "~3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"qunit": "2.19.4",
"qunit-dom": "3.0.0",
"reactiveweb": "^1.4.0",
"shepherd.js": "^11.2.0",
"simplebar": "^6.2.5",
"stylelint": "16.14.1",
"stylelint": "16.15.0",
"stylelint-config-standard": "37.0.0",
"stylelint-prettier": "5.0.3",
"tailwindcss": "^3.0.0",
Expand Down
Loading

0 comments on commit 6424aaf

Please sign in to comment.