Skip to content

Commit cadf8b7

Browse files
committed
Fix grunt npm:test
1 parent 953947a commit cadf8b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grunt/tasks/npm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ module.exports = function() {
6464
var pkgDir = path.join(nodePath, pkg.name);
6565
var doneCount = 2;
6666

67-
// Make sure that bin/jsx-internal is runnable by echoing main.js.
68-
run("bin/jsx-internal", ["main.js"], {
67+
// Make sure that bin/jsx is runnable by echoing main.js.
68+
run("bin/jsx", ["main.js"], {
6969
cwd: pkgDir
7070
}, function(result) {
7171
assert.ok(result.stdout.indexOf("transform") >= 0, result.stdout);

0 commit comments

Comments
 (0)