-
Notifications
You must be signed in to change notification settings - Fork 133
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
watch command changes file names #715
Comments
So multipass compilation is a fairly complex process with very specific rules. You can see a breakdown of these rules here. Based on what you have here, I'd guess that you are using a compiler that processes What I would recommend is changing the filename to What we could do from our end is to add an option to pass in a glob matcher that forces files to be copied instead of compiled regardless of the extension. So you could pass an option to |
The rules makes sense. The file in question is a file from an external library managed through bower. So I am not able to change the name of the file without losing consistency.
|
Any interest in taking a stab at contributing |
If I have a file
compiled.min.js
inassets/js/**
, then runningroots watch
will remove the extension ofcompiled.min.js
, outputting a filecompiled.min
in/public/js/**
. I would expect the file to keep it's name.Is it possible to bypass this behaviour via options?
The text was updated successfully, but these errors were encountered: