Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the dev-dependencies group with 3 updates #765

Merged
merged 3 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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`);
}
Loading