Skip to content

Commit 33dc010

Browse files
committed
chore(package): update dependencies
1 parent c5f6402 commit 33dc010

File tree

9 files changed

+437
-211
lines changed

9 files changed

+437
-211
lines changed

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
],
1111
"license": "W3C",
1212
"devDependencies": {
13-
"eslint": "^8.13.0",
13+
"eslint": "^8.14.0",
1414
"eslint-config-prettier": "^8.5.0",
1515
"eslint-plugin-import": "^2.26.0",
1616
"eslint-plugin-prettier": "^4.0.0",
17-
"expect": "^27.5.1",
17+
"expect": "^28.0.2",
1818
"jsondiffpatch": "^0.4.1",
19-
"mocha": "^9.2.2",
19+
"mocha": "^10.0.0",
2020
"prettier": "^2.6.2",
2121
"terser-webpack-plugin": "^5.3.1",
22-
"typescript": "^4.6.3",
22+
"typescript": "^4.6.4",
2323
"webpack": "^5.72.0",
2424
"webpack-cli": "^4.9.2"
2525
},

test/autofix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import expect from "expect";
1+
import { expect } from "expect";
22
import { parse, validate, write } from "webidl2";
33

44
describe("Writer template functions", () => {

test/commonjs.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const expect = require("expect");
1+
const { expect } = require("expect");
22
const webidl2 = require("webidl2");
33

44
describe("CommonJS import", () => {

test/custom-production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22

3-
import expect from "expect";
3+
import { expect } from "expect";
44
import { parse, write } from "webidl2";
55

66
describe("Writer template functions", () => {

test/invalid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import { collect } from "./util/collect.js";
66
import { parse, validate, WebIDLParseError } from "webidl2";
7-
import expect from "expect";
7+
import { expect } from "expect";
88

99
describe("Parses all of the invalid IDLs to check that they blow up correctly", () => {
1010
for (const test of collect("invalid", { expectError: true, raw: true })) {

test/parent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import expect from "expect";
1+
import { expect } from "expect";
22
import { parse } from "webidl2";
33

44
function checkIdlType(idlType) {

test/syntax.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { collect } from "./util/collect.js";
2-
import expect from "expect";
2+
import { expect } from "expect";
33
import { parse } from "webidl2";
44

55
describe("Parses all of the IDLs to produce the correct ASTs", () => {

test/writer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { collect } from "./util/collect.js";
2-
import expect from "expect";
2+
import { expect } from "expect";
33
import { write, parse } from "webidl2";
44

55
describe("Rewrite and parses all of the IDLs to produce the same ASTs", () => {

0 commit comments

Comments
 (0)