d413d55f91
Use loleaflet's config file to have the same conventions under cypress_test folder too. Update test code to pass esling check. Change-Id: Iade932e6d3cd8941b5fc0897c56c68d2493f0dce
13 lines
176 B
JavaScript
13 lines
176 B
JavaScript
/* global require */
|
|
|
|
var tasks = require('./tasks');
|
|
|
|
function plugin(on, config) {
|
|
on('task', {
|
|
copyFile: tasks.copyFile
|
|
});
|
|
|
|
return config;
|
|
}
|
|
|
|
module.exports = plugin;
|