* 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
15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
module.exports = {
|
|
dist_to_named_dir: {
|
|
cwd: '<%= distDir %>',
|
|
src: '*.js',
|
|
dest: '<%= distDir %>/elasticsearch-js/',
|
|
expand: true,
|
|
},
|
|
dist_to_bower: {
|
|
cwd: '<%= distDir %>',
|
|
src: '*.js',
|
|
dest: '<%= bowerSubmodule %>',
|
|
expand: true,
|
|
},
|
|
};
|