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
When I build my app I get the warning that aborts remaining tasks. Any suggestions? Also, I'm not sure if there's a Google group or IRC chan but if this question is a better fit for that just let me know and I'll move it there.
I normally wouldn't care too much about a warning, but the fact that it aborted due to it makes me wonder what's up.
Running "concurrent:dist" (concurrent) task
>> Warning: There are more tasks than your concurrency limit. After this limit
>> is reached no further tasks will be run until the current tasks are
>> completed. You can adjust the limit in the concurrent task options
Warning: Running "imagemin:dist" (imagemin) task
Warning: ENOENT, no such file or directory 'dist/public/images/yeoman.png' Use --force to continue.
Here's the full output of grunt build
❯ grunt build
Running "clean:dist" (clean) task
Cleaning .tmp...OK
Cleaning dist/lib...OK
Cleaning dist/package.json...OK
Cleaning dist/public...OK
Cleaning dist/server.js...OK
Cleaning dist/views...OK
Running "bower-install:app" (bower-install) task
Running "useminPrepare:html" (useminPrepare) task
Going through app/views/index.html to update the config
Looking for build script HTML comment blocks
Configuration is now:
concat:
{ generated:
{ files:
[ { dest: '.tmp/concat/styles/vendor.css', src: [] },
{ dest: '.tmp/concat/styles/main.css',
src: [ '{.tmp,app}/styles/main.css' ] },
{ dest: '.tmp/concat/scripts/vendor.js',
src:
[ 'app/bower_components/jquery/dist/jquery.js',
'app/bower_components/angular/angular.js',
'app/bower_components/angular-resource/angular-resource.js',
'app/bower_components/angular-cookies/angular-cookies.js',
'app/bower_components/angular-sanitize/angular-sanitize.js',
'app/bower_components/angular-route/angular-route.js' ] },
{ dest: '.tmp/concat/scripts/scripts.js',
src:
[ '{.tmp,app}/scripts/app.js',
'{.tmp,app}/scripts/controllers/main.js',
'{.tmp,app}/scripts/controllers/navbar.js',
'{.tmp,app}/scripts/controllers/login.js',
'{.tmp,app}/scripts/controllers/signup.js',
'{.tmp,app}/scripts/controllers/settings.js',
'{.tmp,app}/scripts/services/auth.js',
'{.tmp,app}/scripts/services/session.js',
'{.tmp,app}/scripts/services/user.js',
'{.tmp,app}/scripts/directives/mongooseError.js' ] } ] } }
uglify:
{ generated:
{ files:
[ { dest: 'dist/public/scripts/vendor.js',
src: [ '.tmp/concat/scripts/vendor.js' ] },
{ dest: 'dist/public/scripts/scripts.js',
src: [ '.tmp/concat/scripts/scripts.js' ] } ] } }
cssmin:
{ generated:
{ files:
[ { dest: 'dist/public/styles/vendor.css',
src: [ '.tmp/concat/styles/vendor.css' ] },
{ dest: 'dist/public/styles/main.css',
src: [ '.tmp/concat/styles/main.css' ] } ] } }
Running "concurrent:dist" (concurrent) task
>> Warning: There are more tasks than your concurrency limit. After this limit
>> is reached no further tasks will be run until the current tasks are
>> completed. You can adjust the limit in the concurrent task options
Warning: Running "imagemin:dist" (imagemin) task
Warning: ENOENT, no such file or directory 'dist/public/images/yeoman.png' Use --force to continue.
Aborted due to warnings.
Execution Time (2014-03-23 23:49:56 UTC)
loading tasks 4ms ▇▇▇▇▇▇▇▇▇▇ 20%
imagemin 1ms ▇▇▇ 5%
imagemin:dist 14ms ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 70%
Total 20ms Use --force to continue.
Aborted due to warnings.
Execution Time (2014-03-23 23:49:54 UTC)
clean:dist 31ms ▇▇▇ 2%
bower-install:app 22ms ▇▇ 1%
useminPrepare:html 22ms ▇▇ 1%
concurrent:dist 1.6s ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 95%
Total 1.7s
Also here is my current dir structure to show that 'dist/public/images/yeoman.png' does exist.
The text was updated successfully, but these errors were encountered:
I was able to fix this by setting the cache option to false. Even though the cache option has been removed from imaginmin this did the trick. Which I see in #124
When I build my app I get the warning that aborts remaining tasks. Any suggestions? Also, I'm not sure if there's a Google group or IRC chan but if this question is a better fit for that just let me know and I'll move it there.
I normally wouldn't care too much about a warning, but the fact that it aborted due to it makes me wonder what's up.
Here's the full output of
grunt build
Also here is my current dir structure to show that
'dist/public/images/yeoman.png'
does exist.The text was updated successfully, but these errors were encountered: