Skip to content

Commit

Permalink
Omit debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
GTANAdam committed Jul 31, 2021
1 parent 09bb82d commit 21d28c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const outputFile = `${outputFolder}/fontawesome-autogen.js`;
const componentCheck =
/[Vue\.component\("]([a-z0-9-]+)["],[ ]{0,1}FontAwesomeIcon\)/g;
const componentName = getComponentName();
console.log(componentName);
// console.log(componentName);

// Edit this per requirements
const matches = [
Expand Down Expand Up @@ -129,7 +129,7 @@ function getIcons(files) {
const file = fs.readFileSync(f);

for (const r of matches) {
console.log(r);
//console.log(r);

while (null != (icon = r.exec(file))) {
icon = icon.filter((e) => e != null);
Expand Down

0 comments on commit 21d28c2

Please sign in to comment.