Browse Source

fixed cli bash on windows for node v 14

master
Pradeep Bhaskaran 3 years ago
parent
commit
6b9acfa91c
3 changed files with 6 additions and 2 deletions
  1. 3
    0
      bin/elxr
  2. 2
    1
      index.js
  3. 1
    1
      package.json

+ 3
- 0
bin/elxr View File

#!/usr/bin/env node

require('../index.js')

+ 2
- 1
index.js View File

#!/usr/bin/env node

// 'use strict';


// PB : TODO -- make sure folder context is proper coz we can now run elxr from anywhere. // PB : TODO -- make sure folder context is proper coz we can now run elxr from anywhere.



+ 1
- 1
package.json View File

"glob": "^7.1.2" "glob": "^7.1.2"
}, },
"bin": { "bin": {
"elxr": "./index.js"
"elxr": "bin/elxr"
} }
} }

Loading…
Cancel
Save