We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c7964 commit 93dcb51Copy full SHA for 93dcb51
babel-tap
@@ -1,5 +1,6 @@
1
#!/usr/bin/env node
2
'use strict';
3
4
-process.execPath = require.resolve('.bin/babel-node');
+var which = require('which');
5
+process.execPath = which.sync('babel-node');
6
require('tap/bin/run.js');
0 commit comments