-
-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Component level scss processing #82
Comments
this is an issue for me too. Is there a fix? |
Inline component SCSS is not supported at the moment. Will look into see what is needed for this feature soon. |
@brandonroberts line 176 in angular-vite-plugin.ts could be enhanced to use vite:css plugin. Below is pseudo code of how to find the plugin, the plugin has transform handle but not sure how to call it. Sorry don't know vite uses the plugin otherwise would have completed the following and submitted the PR.
|
This is not inline scss, this styleUrls that are not working as the current component-resolvers assume that file reference is complied css and does not require preprocessing. |
The vite:css plugin is already part of the pipeline. The file watchers are not responsible for the transform themselves. The styles get inlined during compilation, so they would have to be processed before then. |
I was trying to help but I think i am clueless in how this works. What you are saying make sense, so I will wait for you to bridge this gap. This kinda blocker for me, so if you can close this as you get time then i would really appreciate it. Overall the plugin is working great for me. |
This fix has been included with the |
@brandonroberts thank you. I tested it but the styleUrls are not working, although inline style works fine. It results in following error: 8:16:52 PM [vite] Internal server error: Cannot read properties of null (reading '1') |
@pratikpparikh I'll take a look. If you have a reproduction or quick example snippet that would help also |
@brandonroberts I tested it with your analog-app under apps. Just swap out inline scss style in product-list.component.ts with styleUrls: ['./product-list.component.scss'] and you will be able to reproduce. Regards, |
Hmm interesting. There are already other components in the analog-app that use SCSS styleUrls. Thanks |
I see what's going on now. Those other ones are CSS styleUrls. I'll get a fix in |
thank you |
Fixed and released as |
…nent styles (analogjs#88) Closes analogjs#82
Please provide the environment you discovered this bug in.
Analog generated project
Which area/package is the issue in?
vite-plugin-angular
Description
I am having problem processing component level scss. Do you have an example of such?
this seems to be a bug because in plugin you are resolving the css but not processing it if it is a scss before resolving
Please provide the exception or error you saw
No response
Other information
No response
I would be willing to submit a PR to fix this issue
The text was updated successfully, but these errors were encountered: