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 ab103dd commit 9af350dCopy full SHA for 9af350d
bin/elm-app-cli.js
@@ -2,6 +2,7 @@
2
3
'use strict';
4
5
+
6
const path = require('path');
7
const spawn = require('cross-spawn');
8
const argv = require('minimist')(process.argv.slice(2));
@@ -61,7 +62,7 @@ switch (script) {
61
62
63
args = args.concat([
64
'--compiler',
- path.join(path.dirname(require.resolve('elm')), '/unpacked_bin/elm')
65
+ require.resolve('elm/bin/elm')
66
]);
67
const cp = spawn.sync(require.resolve('elm-test/bin/elm-test'), args, {
68
stdio: 'inherit'
0 commit comments