Skip to content

Commit

Permalink
chore(package): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanaz committed May 1, 2022
1 parent c5f6402 commit 33dc010
Show file tree
Hide file tree
Showing 9 changed files with 437 additions and 211 deletions.
626 changes: 426 additions & 200 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
],
"license": "W3C",
"devDependencies": {
"eslint": "^8.13.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"expect": "^27.5.1",
"expect": "^28.0.2",
"jsondiffpatch": "^0.4.1",
"mocha": "^9.2.2",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.3",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
Expand Down
2 changes: 1 addition & 1 deletion test/autofix.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import expect from "expect";
import { expect } from "expect";
import { parse, validate, write } from "webidl2";

describe("Writer template functions", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/commonjs.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const expect = require("expect");
const { expect } = require("expect");
const webidl2 = require("webidl2");

describe("CommonJS import", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/custom-production.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

import expect from "expect";
import { expect } from "expect";
import { parse, write } from "webidl2";

describe("Writer template functions", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/invalid.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import { collect } from "./util/collect.js";
import { parse, validate, WebIDLParseError } from "webidl2";
import expect from "expect";
import { expect } from "expect";

describe("Parses all of the invalid IDLs to check that they blow up correctly", () => {
for (const test of collect("invalid", { expectError: true, raw: true })) {
Expand Down
2 changes: 1 addition & 1 deletion test/parent.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import expect from "expect";
import { expect } from "expect";
import { parse } from "webidl2";

function checkIdlType(idlType) {
Expand Down
2 changes: 1 addition & 1 deletion test/syntax.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { collect } from "./util/collect.js";
import expect from "expect";
import { expect } from "expect";
import { parse } from "webidl2";

describe("Parses all of the IDLs to produce the correct ASTs", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/writer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { collect } from "./util/collect.js";
import expect from "expect";
import { expect } from "expect";
import { write, parse } from "webidl2";

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

0 comments on commit 33dc010

Please sign in to comment.