We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e13ee8 commit 48009d5Copy full SHA for 48009d5
utils/check_deps.js
@@ -97,13 +97,7 @@ async function checkDeps() {
97
98
99
function allowExternalImport(from, importPath, importName) {
100
- const EXTERNAL_IMPORT_ALLOWLIST = [
101
- 'electron',
102
- 'expect/build/types',
103
- 'expect/build/jasmineUtils',
104
- 'expect/build/print',
105
- 'expect/build/matchers'
106
- ];
+ const EXTERNAL_IMPORT_ALLOWLIST = ['electron'];
107
// Only external imports are relevant. Files in src/web are bundled via webpack.
108
if (importName.startsWith('.') || importPath.startsWith(path.join(src, 'web')))
109
return true;
0 commit comments