Skip to content

Commit

Permalink
add grid to confirm the plugin is working
Browse files Browse the repository at this point in the history
  • Loading branch information
vursen committed Jan 12, 2025
1 parent 7031c44 commit 8e4c851
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions shared/web-components-vite-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export function useLocalWebComponents(webComponentsNodeModulesPath: string): Plu
if (/^(@polymer|@vaadin)/.test(id)) {
return this.resolve(path.join(webComponentsNodeModulesPath, id));
}
},
}
}
};
}

/**
Expand All @@ -43,6 +43,7 @@ export function useLitWebComponents(): PluginOption {
'custom-field',
'details',
'dialog',
'grid',
'horizontal-layout',
'list-box',
'notification',
Expand All @@ -57,11 +58,10 @@ export function useLitWebComponents(): PluginOption {
find: new RegExp(`^@vaadin/${component}\/(src\/)?vaadin-(?!lit)`),
replacement: `@vaadin/${component}/$1vaadin-lit-`
}
]
];
})
},
}
}
};
}
}
};
}

0 comments on commit 8e4c851

Please sign in to comment.