You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run tns run iOS --emulator I can see the console message resolving "./app.scss" to "./app.ios.scss" but I do not see the debug message anywhere.
Is there a setting I need to specify to enable scss debug messages?
Edit 12/15/2021:
I was looking at this again, looked up the SASS @debug documentation and thought, "Doh! Maybe I should use the correct syntax!"
So, I changed the line to
@debug "app.ios.scss...";
and still no output to the terminal. So, I changed the line to
@warn "app.ios.scss...";
and that did appear in the terminal output. So, my question remains - is there a build/scss setting that enables @debug output?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I ran
tns create
to create a new JavaScript Tabs project and made a single change: edited app.ios.css too append the line@debug("app.ios.scss...");
When I run
tns run iOS --emulator
I can see the console messageresolving "./app.scss" to "./app.ios.scss"
but I do not see the debug message anywhere.Is there a setting I need to specify to enable scss debug messages?
Edit 12/15/2021:
I was looking at this again, looked up the SASS @debug documentation and thought, "Doh! Maybe I should use the correct syntax!"
So, I changed the line to
@debug "app.ios.scss...";
and still no output to the terminal. So, I changed the line to
@warn "app.ios.scss...";
and that did appear in the terminal output. So, my question remains - is there a build/scss setting that enables @debug output?
Beta Was this translation helpful? Give feedback.
All reactions