forgot shebang to make cli work
This commit is contained in:
parent
173582c0f6
commit
e071d46c5f
@ -1 +1 @@
|
||||
/lib-es5
|
||||
/lib-es5
|
||||
|
||||
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,4 +1,4 @@
|
||||
*.*~
|
||||
node_modules
|
||||
npm-debug.log
|
||||
/lib-es5
|
||||
/node_modules
|
||||
npm-debug.log
|
||||
*.*~
|
||||
|
||||
11
.npmignore
11
.npmignore
@ -1,5 +1,6 @@
|
||||
/lib
|
||||
/patches/*.patch
|
||||
/test
|
||||
.eslintignore
|
||||
.gitignore
|
||||
/lib
|
||||
/patches/*.patch
|
||||
/test
|
||||
.eslintignore
|
||||
.gitignore
|
||||
npm-debug.log
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import { log } from './log.js';
|
||||
import minimist from 'minimist';
|
||||
import { need } from './index.js';
|
||||
|
||||
@ -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",
|
||||
@ -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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user