Skip to content

Commit 64eb44c

Browse files
chore(deps-dev): bump the dev-dependencies group with 3 updates (#765)
* 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] <[email protected]> * fix prettier * Update acquire.js --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kagami Sascha Rosylight <[email protected]>
1 parent ee1ee53 commit 64eb44c

File tree

7 files changed

+62
-62
lines changed

7 files changed

+62
-62
lines changed

lib/error.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ function error(
7979
source[position].type !== "eof"
8080
? source[position].line
8181
: source.length > 1
82-
? source[position - 1].line
83-
: 1;
82+
? source[position - 1].line
83+
: 1;
8484

8585
const precedingLastLine = lastLine(
8686
tokensToText(sliceTokens(-maxTokens), { precedes: true }),

lib/productions/extended-attributes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ export class SimpleExtendedAttribute extends Base {
155155
const value = this.params.rhsIsList
156156
? list
157157
: this.params.tokens.secondaryName
158-
? unescape(tokens.secondaryName.value)
159-
: null;
158+
? unescape(tokens.secondaryName.value)
159+
: null;
160160
return { type, value };
161161
}
162162
get arguments() {

lib/productions/iterable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export class IterableLike extends Base {
2222
tokens.base = tokens.readonly
2323
? tokeniser.consume("maplike", "setlike")
2424
: tokens.async
25-
? tokeniser.consume("iterable")
26-
: tokeniser.consume("iterable", "maplike", "setlike");
25+
? tokeniser.consume("iterable")
26+
: tokeniser.consume("iterable", "maplike", "setlike");
2727
if (!tokens.base) {
2828
tokeniser.unconsume(start_position);
2929
return;

lib/productions/type.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ for more information.`;
231231
const target = this.union
232232
? this
233233
: typedef && typedef.type === "typedef"
234-
? typedef.idlType
235-
: undefined;
234+
? typedef.idlType
235+
: undefined;
236236
if (target && this.nullable) {
237237
// do not allow any dictionary
238238
const { reference } = idlTypeIncludesDictionary(target, defs) || {};

package-lock.json

Lines changed: 49 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
},
1414
"license": "W3C",
1515
"devDependencies": {
16-
"eslint": "^8.52.0",
16+
"eslint": "^8.54.0",
1717
"eslint-config-prettier": "^9.0.0",
1818
"eslint-plugin-import": "^2.29.0",
1919
"eslint-plugin-prettier": "^5.0.1",
2020
"expect": "^29.7.0",
2121
"jsondiffpatch": "^0.5.0",
2222
"mocha": "^10.2.0",
23-
"prettier": "^3.0.3",
23+
"prettier": "^3.1.0",
2424
"terser-webpack-plugin": "^5.3.9",
25-
"typescript": "^5.2.2",
25+
"typescript": "^5.3.2",
2626
"webpack": "^5.89.0",
2727
"webpack-cli": "^5.1.4"
2828
},

test/util/acquire.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ for (const test of collect("invalid", { expectError: true, raw: true })) {
99
const content = test.error
1010
? test.error.message
1111
: test.validation
12-
? test.validation.map((v) => `(${v.ruleName}) ${v.message}`).join("\n")
13-
: "";
12+
? test.validation.map((v) => `(${v.ruleName}) ${v.message}`).join("\n")
13+
: "";
1414

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

0 commit comments

Comments
 (0)