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
Running generate_configs on my grunt-contrib-copy configuration:
production: {expand: true,cwd: '<%= yeoman.app %>/config/',dest: '<%= yeoman.app %>/scripts/',src: 'config_production.js',options: {process: function(content,srcpath){varcomment="// *** WARNING *** \n";comment+="// This is an auto-generated file. If you want to modify it, the source is app/config/config_production.js\n\n";returncomment+content;}}}
will loose the process: function (content, srcpath) {...} creating just:
process: [Function]
The text was updated successfully, but these errors were encountered:
Ah, yes, ATM that's not possible. It needs a totally different approach, since I'd need to parse the AST to see what code it's copying. It is on the roadmap however, but I'm not sure when it'll land.
Running
generate_configs
on my grunt-contrib-copy configuration:will loose the
process: function (content, srcpath) {...}
creating just:The text was updated successfully, but these errors were encountered: