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
when I use this, and there are sub-directories in the "css" folder:
src: [ 'css/**/*' ],
I get an error in the grunt task when executing this line:
json.files[key]['version'] = hasher.update(grunt.file.read(path.join(options.basePath, item))).digest("hex")
error is due to trying to read a directory as a file. I fixed it with this:
var isDir = grunt.file.isDir(path.join(options.basePath, item)); if (!isDir) { ...rest of code to create manifest file entries }
The text was updated successfully, but these errors were encountered:
Could make a pull request for this? I'm not maintaining the grunt file right now! Thanks!
Sorry, something went wrong.
Closing since there's been no activity for 5 months, if the issue persists please reopen
No branches or pull requests
when I use this, and there are sub-directories in the "css" folder:
I get an error in the grunt task when executing this line:
error is due to trying to read a directory as a file. I fixed it with this:
The text was updated successfully, but these errors were encountered: