Skip to content

Commit

Permalink
build(deps-dev): Bump prettier from 3.0.3 to 3.1.1 (#1711)
Browse files Browse the repository at this point in the history
* build(deps-dev): Bump prettier from 3.0.3 to 3.1.1

Bumps [prettier](https://github.com/prettier/prettier) from 3.0.3 to 3.1.1.
- [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.1.1)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* format

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Felix Boehm <188768+fb55@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and fb55 authored Jan 4, 2024
1 parent 7dade15 commit 59b3538
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-unicorn": "^50.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
Expand Down
8 changes: 4 additions & 4 deletions src/Parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,10 @@ export class Parser implements Callbacks {
quote === QuoteType.Double
? '"'
: quote === QuoteType.Single
? "'"
: quote === QuoteType.NoValue
? undefined
: null,
? "'"
: quote === QuoteType.NoValue
? undefined
: null,
);

if (
Expand Down
6 changes: 3 additions & 3 deletions src/Tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,9 @@ export default class Tokenizer {
this.xmlMode
? DecodingMode.Strict
: this.baseState === State.Text ||
this.baseState === State.InSpecialTag
? DecodingMode.Legacy
: DecodingMode.Attribute,
this.baseState === State.InSpecialTag
? DecodingMode.Legacy
: DecodingMode.Attribute,
);
}

Expand Down

0 comments on commit 59b3538

Please sign in to comment.