We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
url()
One suggestion is to support url() for asset_cache_buster. Then this could also be used for an asset hashing tool regardless of compass migration.
asset_cache_buster
We have a file hashmap.json hash map that we generate on build that tells the backend / frontend where to find the files.
hashmap.json
{ "images/image.png": "/static/fd9a859f1205a0b5d5b2d6c9f28aee0f274cd4d9/images/image.png" }
Then in grunt I am using your plugin like:
assetHashMap = JSON.parse(fs.readFileSync('hashmap.json')); [...] sass: { options: { functions: assetFunctions({ asset_cache_buster: function(http_path, real_path, done) { var hash_path; hash_path = assetHashMap[http_path]; return done({ path: hash_path, query: null }); } }) } }
In my Sass I am calling the image like:
body { background: image-url('image.png'); }
This works great! But, it would be awesome if I could migrate off of compass syntax entirely and use url(), like this:
body { background: url('images/image.png'); }
I will try to fork and update if I can, but it may be something easy for the original developers to add if they feel it would be a nice addition.
I have found this tool to be very helpful in my transition from compass to node-sass. Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
One suggestion is to support
url()
forasset_cache_buster
. Then this could also be used for an asset hashing tool regardless of compass migration.Use case:
We have a file
hashmap.json
hash map that we generate on build that tells the backend / frontend where to find the files.Then in grunt I am using your plugin like:
In my Sass I am calling the image like:
This works great! But, it would be awesome if I could migrate off of compass syntax entirely and use
url()
, like this:I will try to fork and update if I can, but it may be something easy for the original developers to add if they feel it would be a nice addition.
I have found this tool to be very helpful in my transition from compass to node-sass. Thank you.
The text was updated successfully, but these errors were encountered: