Skip to content

Commit

Permalink
forgot shebang to make cli work
Browse files Browse the repository at this point in the history
  • Loading branch information
igorklopov committed Aug 31, 2016
1 parent 173582c commit e071d46
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/lib-es5
/lib-es5
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.*~
node_modules
npm-debug.log
/lib-es5
/node_modules
npm-debug.log
*.*~
11 changes: 6 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/lib
/patches/*.patch
/test
.eslintignore
.gitignore
/lib
/patches/*.patch
/test
.eslintignore
.gitignore
npm-debug.log
2 changes: 2 additions & 0 deletions lib/bin.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

import { log } from './log.js';
import minimist from 'minimist';
import { need } from './index.js';
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"description": "",
"readme": "",
"main": "lib-es5/index.js",
"bin": "lib-es5/bin.js",
"bin": {
"pkg-fetch": "lib-es5/bin.js"
},
"babel": {
"plugins": [
"transform-async-to-generator",
Expand All @@ -30,6 +32,7 @@
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.11.4",
"babel-eslint": "6.1.2",
"babel-plugin-transform-async-to-generator": "6.8.0",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.13.2",
Expand Down

0 comments on commit e071d46

Please sign in to comment.