Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 23cafc2

Browse files
committed
be OCD about ordering third-party requires first
1 parent 168a531 commit 23cafc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/resolve-script/find-executables.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
var _ = require('lodash')
12
var glob = require('glob')
23
var path = require('path')
34
var async = require('async')
5+
46
var isExecutable = require('./is-executable')
5-
var _ = require('lodash')
67

78
module.exports = function (pattern, cb) {
89
glob(pattern, {nodir: true}, function (er, results) {

0 commit comments

Comments
 (0)