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 7505f5c commit 86f95f2Copy full SHA for 86f95f2
index.js
@@ -46,12 +46,14 @@ export function logImport (importData) {
46
console.log(`${metaKey}:`, metaValue);
47
}
48
49
- console.group(' deps: ', importData.deps.length);
50
- for (let depData of importData.deps) {
51
- logImport(depData);
+ if (importData.deps) {
+ console.group(' deps: ', importData.deps.length);
+ for (let depData of importData.deps) {
52
+ logImport(depData);
53
+ }
54
+ console.groupEnd();
55
56
console.groupEnd();
- console.groupEnd();
57
58
export function logImports () {
59
console.group('Imports');
0 commit comments