Skip to content
Snippets Groups Projects
Commit 840c0937 authored by AndiMajore's avatar AndiMajore
Browse files

removed prints from prefixing script

parent 2846bf7f
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,7 @@ class ParserHTML:
if ('fa-icons' in file):
continue
path = os.path.join(root, file)
print('parsing', path)
# print('parsing', path)
html = self.parseHtml(path)
self.write(path, html)
......@@ -232,7 +232,7 @@ class ParserJS:
for file in files:
if file.endswith(".component.ts"):
path = os.path.join(root, file)
print('parsing', path)
# print('parsing', path)
html = self.parseJS(path)
self.write(path, html)
......@@ -350,7 +350,7 @@ class ParserCSS:
# skip ng select classes
if '@ng-select' in path or '-no-prefix.scss' in path:
continue
print('parsing', path)
# print('parsing', path)
scss = self.parseCSS(path)
self.write(path, scss)
......@@ -422,4 +422,3 @@ if __name__ == '__main__':
cleanup()
else:
raise Exception(f'ERROR: Unknown argument for --stage: {args.stage}. Should be "parse" or "stage."')
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment