-
Notifications
You must be signed in to change notification settings - Fork 68
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
multi_sass_binary permission denied exclusive packages same directory #97
Comments
It looks like As an aside, it's a good idea to avoid |
How should I write a bazel file for an angular module with multiple components without |
In general, you should expect to update your BUILD files whenever you change the dependency structure of your app. That's an inherent constraint of incremental rebuilds in a builds system like Bazel where the configuration is defined strictly independently of the contents of the input files. You can mitigate this overhead with an automated BUILD file generator; #75 is a work in progress in that direction. |
👍 Same problem. |
Reproduction:
Folder sass_test, containing empty files A.scss and B.scss.
Output
Am I doing something wrong?
The use-case would be the following: Angular project, has 2 modules inside same folder for convenience; module A is standalone, but module B is used by another module, yet both share the same scope so to say.
The text was updated successfully, but these errors were encountered: