You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.
My grunt tasks are sequenced such that grunt uglify runs first and copies the uglified files in a newly created directory and then filerev task runs on this new directory. Both these tasks are mentioned in an array like grunt.registerTask('default', ['uglify', 'filerev']); But the first time I run grunt, filerev is probably not able to read this new directory and its files, so I have to run grunt again in the terminal and then it works. Why so?
The text was updated successfully, but these errors were encountered:
My grunt tasks are sequenced such that grunt uglify runs first and copies the uglified files in a newly created directory and then filerev task runs on this new directory. Both these tasks are mentioned in an array like
grunt.registerTask('default', ['uglify', 'filerev']);
But the first time I run grunt, filerev is probably not able to read this new directory and its files, so I have to run grunt again in the terminal and then it works. Why so?The text was updated successfully, but these errors were encountered: