Skip to content

Commit

Permalink
Using es6 export
Browse files Browse the repository at this point in the history
Fixes #5920
  • Loading branch information
ycombinator authored and epixa committed Jan 16, 2016
1 parent b5b13ff commit 9300eda
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/cli/plugin/plugin_lister.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
const fs = require('fs');

module.exports = {
list: list
};

function list(settings, logger) {
export function list(settings, logger) {
fs.readdir(settings.pluginDir, function (err, files) {

files
Expand Down

0 comments on commit 9300eda

Please sign in to comment.