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 run grunt bower w/ following config I see that type'd value is "untyped"
Why is that?
bower: {
install: {
options: {
targetDir: './components',
install: true,
layout: function (type, component) {
grunt.log.writeln('type="' + type + '"');
grunt.log.writeln('component="' + component + '"');
var renamedType = type;
if (type == 'js') renamedType = 'scripts';
else if (type == 'css') renamedType = 'styles';
Hi,
When I run grunt bower w/ following config I see that type'd value is "untyped"
Why is that?
bower: {
install: {
options: {
targetDir: './components',
install: true,
layout: function (type, component) {
grunt.log.writeln('type="' + type + '"');
grunt.log.writeln('component="' + component + '"');
var renamedType = type;
if (type == 'js') renamedType = 'scripts';
else if (type == 'css') renamedType = 'styles';
Thank you.
The text was updated successfully, but these errors were encountered: