Skip to content

Commit

Permalink
remove dom-change-list from type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Nov 1, 2023
1 parent 79a8d02 commit af1757f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/run-types-tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ const __dirname = new URL('.', import.meta.url).pathname;
const root = resolve(__dirname, '..');

async function main() {
const packages = getPackages().filter((pkg) => pkg.name !== '@glimmer/vm-babel-plugins');
// vm-babel-plugins is exclusively used by ember.
// dom-change-list isn't used by anyone, even in this repo.
const packages = getPackages().filter(
(pkg) => pkg.name !== '@glimmer/vm-babel-plugins' && pkg.name !== '@glimmer/dom-change-list'
);

/**
* Runs a smoke test of the generated type definitions by importing every module
Expand Down

0 comments on commit af1757f

Please sign in to comment.