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 d6fd9bc commit c36b2d2Copy full SHA for c36b2d2
packages/devtools/src/app/components/flowmap/NodeModuleInfo.vue
@@ -100,7 +100,7 @@ function down() {
100
#after
101
>
102
<div
103
- p2 ml4 border="l" flex="~ col gap-2"
+ p3 ml4 border="l" flex="~ col gap-2"
104
:class="active ? 'border-flow-line-active' : 'border-flow-line'"
105
106
<DisplayModuleId :id="item.importer" />
packages/devtools/src/app/utils/icon.ts
@@ -13,6 +13,12 @@ export const ModuleTypeRules: ModuleTypeRule[] = [
13
description: 'Virtual',
14
icon: 'i-catppuccin-symlink',
15
},
16
+ {
17
+ match: /^@?[\w-]+\/?/,
18
+ name: 'package',
19
+ description: 'Package',
20
+ icon: 'i-catppuccin-java-class-abstract',
21
+ },
22
{
23
match: /[\\/]node_modules[\\/]/i,
24
name: 'node_modules',
0 commit comments