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 85c0393 commit 94bf416Copy full SHA for 94bf416
packages/cli/src/angular/migrations/standalone/0002-generate-use-icons.ts
@@ -23,6 +23,10 @@ export const generateUseIcons = async (
23
const sourceIonIcons = iconsData.icons.map((icon) => icon.name);
24
25
for (const sourceFile of project.getSourceFiles()) {
26
+ if (sourceFile.getFilePath().includes('node_modules')) {
27
+ continue;
28
+ }
29
+
30
if (sourceFile.getFilePath().endsWith(".html")) {
31
const htmlAsString = sourceFile.getFullText();
32
0 commit comments