Skip to content

Commit

Permalink
fix: npm run lint
Browse files Browse the repository at this point in the history
Unexpected var, use let or const instead.
  • Loading branch information
dyun8080 committed Dec 24, 2018
1 parent bda767d commit 24d7b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli.js
Expand Up @@ -131,7 +131,7 @@ Promise.resolve()
process.exit(1);
});

var SUPPORTED_INSTALLERS = ['npm', 'pnpm', 'ied'];
const SUPPORTED_INSTALLERS = ['npm', 'pnpm', 'ied'];

function detectPreferredInstaller(cwd) {
return detectPreferredPM(cwd)
Expand Down

0 comments on commit 24d7b70

Please sign in to comment.