* switch from custom eslint config to standard + prettier * fix new standard eslint violations * add editorconfig file * auto-fix all other violations * update lint yarn script * remove jshint comment
16 lines
418 B
JavaScript
16 lines
418 B
JavaScript
module.exports = {
|
|
dist: {
|
|
files: {
|
|
'<%= distDir %>/elasticsearch.min.js': '<%= distDir %>/elasticsearch.js',
|
|
'<%= distDir %>/elasticsearch.angular.min.js':
|
|
'<%= distDir %>/elasticsearch.angular.js',
|
|
'<%= distDir %>/elasticsearch.jquery.min.js':
|
|
'<%= distDir %>/elasticsearch.jquery.js',
|
|
},
|
|
options: {
|
|
preserveComments: false,
|
|
screwIE8: true,
|
|
},
|
|
},
|
|
};
|