Skip to content

Commit

Permalink
Use @webref/idl as a local devDependency
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip committed Oct 27, 2020
1 parent dc87a1a commit 1d9d4a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
},
"devDependencies": {
"@octokit/rest": "16.28.7",
"@webref/idl": "file:packages/idl",
"flags": "0.1.3",
"lerna": "3.22.1",
"mocha": "8.2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/idl/all.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const assert = require('assert');

const idl = require('../../packages/idl');
const idl = require('@webref/idl');

describe('@webidl/idl module', () => {
it('listAll', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/idl/validate.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const assert = require('assert');
const WebIDL2 = require('webidl2');

const idl = require('../../packages/idl');
const idl = require('@webref/idl');

idl.parseAll().then((all) => {
describe('WebIDL2.validate', () => {
Expand Down

0 comments on commit 1d9d4a8

Please sign in to comment.