Skip to content

Commit

Permalink
feat: use local lux install if one exists (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharygolba committed May 4, 2016
1 parent e35c430 commit 2fc214c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/lux
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#!/usr/bin/env node
require('../dist/packages/cli');
try {
require(`${process.env.PWD}/node_modules/lux-framework/dist/packages/cli`);
} catch (err) {
require('../dist/packages/cli');
}

0 comments on commit 2fc214c

Please sign in to comment.