Skip to content

Commit

Permalink
chore(deps-dev): bump the dev-dependencies group with 3 updates (#765)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump the dev-dependencies group with 3 updates

Bumps the dev-dependencies group with 3 updates: [eslint](https://github.com/eslint/eslint), [prettier](https://github.com/prettier/prettier) and [typescript](https://github.com/Microsoft/TypeScript).


Updates `eslint` from 8.52.0 to 8.54.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.52.0...v8.54.0)

Updates `prettier` from 3.0.3 to 3.1.0
- [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.0)

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

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

* fix prettier

* Update acquire.js

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kagami Sascha Rosylight <saschanaz@outlook.com>
  • Loading branch information
dependabot[bot] and saschanaz authored Dec 2, 2023
1 parent ee1ee53 commit 64eb44c
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 62 deletions.
4 changes: 2 additions & 2 deletions lib/error.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ function error(
source[position].type !== "eof"
? source[position].line
: source.length > 1
? source[position - 1].line
: 1;
? source[position - 1].line
: 1;

const precedingLastLine = lastLine(
tokensToText(sliceTokens(-maxTokens), { precedes: true }),
Expand Down
4 changes: 2 additions & 2 deletions lib/productions/extended-attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export class SimpleExtendedAttribute extends Base {
const value = this.params.rhsIsList
? list
: this.params.tokens.secondaryName
? unescape(tokens.secondaryName.value)
: null;
? unescape(tokens.secondaryName.value)
: null;
return { type, value };
}
get arguments() {
Expand Down
4 changes: 2 additions & 2 deletions lib/productions/iterable.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export class IterableLike extends Base {
tokens.base = tokens.readonly
? tokeniser.consume("maplike", "setlike")
: tokens.async
? tokeniser.consume("iterable")
: tokeniser.consume("iterable", "maplike", "setlike");
? tokeniser.consume("iterable")
: tokeniser.consume("iterable", "maplike", "setlike");
if (!tokens.base) {
tokeniser.unconsume(start_position);
return;
Expand Down
4 changes: 2 additions & 2 deletions lib/productions/type.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ for more information.`;
const target = this.union
? this
: typedef && typedef.type === "typedef"
? typedef.idlType
: undefined;
? typedef.idlType
: undefined;
if (target && this.nullable) {
// do not allow any dictionary
const { reference } = idlTypeIncludesDictionary(target, defs) || {};
Expand Down
98 changes: 49 additions & 49 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
},
"license": "W3C",
"devDependencies": {
"eslint": "^8.52.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"expect": "^29.7.0",
"jsondiffpatch": "^0.5.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"prettier": "^3.1.0",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.2.2",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
Expand Down
4 changes: 2 additions & 2 deletions test/util/acquire.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ for (const test of collect("invalid", { expectError: true, raw: true })) {
const content = test.error
? test.error.message
: test.validation
? test.validation.map((v) => `(${v.ruleName}) ${v.message}`).join("\n")
: "";
? test.validation.map((v) => `(${v.ruleName}) ${v.message}`).join("\n")
: "";

writeFileSync(test.baselinePath, `${content}\n`);
}

0 comments on commit 64eb44c

Please sign in to comment.