I have the following problem related to the custom Angular schematics file name.
I want to create a theme scss file that starts with underscore and immediately after it I want to use a double underscore as a delimiter which separates name variable from rest of the normal string.
For example, I want to create a component structure with a file _mouse-theme.scss
and the only way I can do it is by using the name variable __name@dasherize-theme.scss
. The problem is, that it will create mouse-theme.scss
and not _mouse-theme.scss
. I tried to use three underscores, but then the name variable seems to be undefined.
Is there a way to use it with three underscores and the first underscore to be treated as a string, or to escape it somehow?
Thanks in advance!