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
I am trying to get this working but I am failing to get it running. It seems that the grunt libs have changed and therefore your task is not executing the right way.
Running "sass_imagemapper:all" (sass_imagemapper) task
Warning: Cannot read property 'dest' of undefined Use --force to continue.
grunt.util._ has been binned in favour of lodash.
to fix this do the following, add the npm lodash module to the package and load it
return grunt.registerMultiTask("sass_imagemapper", "Plugin to generate css file wto bind all images from folder", function() {
_ = require('lodash'); // <--
replace all occurrences of grunt.util._ with _.
and here we go -> its working.
The text was updated successfully, but these errors were encountered:
I am trying to get this working but I am failing to get it running. It seems that the grunt libs have changed and therefore your task is not executing the right way.
grunt.util._ has been binned in favour of lodash.
to fix this do the following, add the npm lodash module to the package and load it
replace all occurrences of grunt.util._ with _.
and here we go -> its working.
The text was updated successfully, but these errors were encountered: