add +x bin files that reference the compiled ones
This commit is contained in:
3
packages/babel-cli/bin/babel-external-helpers.js
Executable file
3
packages/babel-cli/bin/babel-external-helpers.js
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require("../lib/babel-external-helpers");
|
||||
3
packages/babel-cli/bin/babel-node.js
Executable file
3
packages/babel-cli/bin/babel-node.js
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require("../lib/babel-node");
|
||||
3
packages/babel-cli/bin/babel-plugin.js
Executable file
3
packages/babel-cli/bin/babel-plugin.js
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require("../lib/babel-plugin");
|
||||
3
packages/babel-cli/bin/babel.js
Executable file
3
packages/babel-cli/bin/babel.js
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require("../lib/babel");
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user