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
The grunt file that grunt generated for me when I did
$ grunt init:jquery
Created a min task that looks like this:
min: { 'dist/project-name.min.js': ['<banner>', 'dist/project-name.js'] },
Instead, of looking in dist, it should look in src:
dist
src
min: { 'dist/project-name.min.js': ['<banner>', 'src/project-name.js'] },
The text was updated successfully, but these errors were encountered:
I realize that I was wrong about this. It didn't realize that in the jquery gruntfile grunt would concat src/* into dist, and then min from dist.
Pardon my premature issue.
Sorry, something went wrong.
No branches or pull requests
The grunt file that grunt generated for me when I did
Created a min task that looks like this:
Instead, of looking in
dist
, it should look insrc
:The text was updated successfully, but these errors were encountered: