-
Notifications
You must be signed in to change notification settings - Fork 101
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
Assets with paths not updated in 1.5.0 #218
Comments
Having the same issue. |
Probably a file system issue. @jsiragusa @enstyled are you on Windows? |
OS X for me |
OS X 10.12.2 here. |
Debian 8.7 on Docker here. |
I have the same issue on a Mac |
Could anybody test with the fixes in PR #220? If that doesn't fix your setup, could you provide a test cases/config so I can look at it? |
@richardhinkamp apologies for the delay. It was some time until I could get back on this project. I tested your PR and, unfortunately it didn't help my issue. However, I began to examine the changes in your PR and well as the commit (0c69b17) that I believe introduced the problem and I discovered that it's how the assets are treated. My original config (which worked fine in v.1.4.1):
Adjusted config which now works with v1.5.0
|
I was previously using v1.4.1 and when I had an HTML like:
<script type="text/javascript" src="assets/app.js"></script>
It would correctly get busted to:
<script type="text/javascript" src="assets/app.HASH.js"></script>
I bumped up to 1.5.0 and noticed that the HTML is not updated (output from the task doesn't indicate any errors). However, I noticed if the assets are referenced without a path, they are updated correctly. I.e.
<script type="text/javascript" src="app.js"></script>
works.Is this by design? I couldn't find anything in the docs to suggest that assets with a path shouldn't work by default.
The text was updated successfully, but these errors were encountered: