This commit is contained in:
Mathew Kurian 2016-01-24 08:00:29 -06:00
parent 9732654fec
commit ff18f64b46
7 changed files with 59 additions and 104257 deletions

View file

@ -176,7 +176,7 @@ module.exports = function (grunt) {
});
grunt.registerTask('styles', ['sass:dist', 'postcss:dist']);
grunt.registerTask('build', ['get-deps', 'sass:dist', 'postcss:dist', 'browserify:dist', 'copy', 'imagemin']);
grunt.registerTask('build', ['get-deps', 'sass:dist', 'postcss:dist', 'browserify:dist', 'copy', 'imagemin', 'babel']);
grunt.registerTask('default', 'build');
grunt.registerTask('auto-build-scripts', ['browserify:dev']);
grunt.registerTask('auto-build-styles', ['sass:dev', 'watch:sass']);

View file

@ -114,9 +114,9 @@ var Inspector = function () {
key: 'inspectTags',
value: function inspectTags(data) {
return (data.persistent['tags'] || []).map(function (tag) {
return _chalk2.default.cyan('' + tag.toUpperCase());
return _chalk2.default.cyan('' + String(tag).toUpperCase());
}).concat((data.transient['tags'] || []).map(function (tag) {
return _chalk2.default.magenta('' + tag.toUpperCase());
return _chalk2.default.magenta('' + String(tag).toUpperCase());
})).join(' ');
}
}, {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long