add +x bin files that reference the compiled ones

This commit is contained in:
Sebastian McKenzie
2015-07-12 12:35:49 +01:00
parent ada45d5800
commit 3d21b85d87
5 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env node
require("../lib/babel-external-helpers");

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env node
require("../lib/babel-node");

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env node
require("../lib/babel-plugin");

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env node
require("../lib/babel");

View File

@@ -20,9 +20,9 @@
"slash": "^1.0.0"
},
"bin": {
"babel": "./lib/babel/index.js",
"babel-node": "./lib/babel-node",
"babel-external-helpers": "./lib/babel-external-helpers",
"babel-plugin": "./lib/babel-plugin/index.js"
"babel": "./bin/babel.js",
"babel-node": "./bin/babel-node.js",
"babel-external-helpers": "./bin/babel-external-helpers.js",
"babel-plugin": "./bin/babel-plugin.js"
}
}