Skip to content

Commit 19a032d

Browse files
fsonrandycoulman
authored andcommitted
Use yarnpkg alias to run Yarn (facebook#1365)
There’s a common tool included in Hadoop that also has a `yarn` command, which created issues for users who had Hadoop installed: * facebook#1257 * facebook#1363 Yarn also installs the command under `yarnpkg` alias (added in yarnpkg/yarn@cefa9a3) so we can use `yarnpkg` instead of `yarn` to make it more reliable. This has no effect on users who don't have Hadoop installed, but those who have won't see errors from falsely detecting Hadoop Yarn as Yarn the package manager, and they can now also install Yarn to make use of our Yarn support without the Hadoop Yarn interfering.
1 parent 4416292 commit 19a032d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/create-react-app/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function createApp(name, verbose, version) {
135135

136136
function shouldUseYarn() {
137137
try {
138-
execSync('yarn --version', {stdio: 'ignore'});
138+
execSync('yarnpkg --version', {stdio: 'ignore'});
139139
return true;
140140
} catch (e) {
141141
return false;
@@ -146,7 +146,7 @@ function install(packageToInstall, verbose, callback) {
146146
var command;
147147
var args;
148148
if (shouldUseYarn()) {
149-
command = 'yarn';
149+
command = 'yarnpkg';
150150
args = [ 'add', '--dev', '--exact', packageToInstall];
151151
} else {
152152
command = 'npm';

packages/react-scripts/scripts/eject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ prompt(
146146
if (fs.existsSync(paths.yarnLockFile)) {
147147
console.log(cyan('Running yarn...'));
148148
fs.removeSync(ownPath);
149-
spawnSync('yarn', [], {stdio: 'inherit'});
149+
spawnSync('yarnpkg', [], {stdio: 'inherit'});
150150
} else {
151151
console.log(cyan('Running npm install...'));
152152
fs.removeSync(ownPath);

packages/react-scripts/scripts/init.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
6464
var args;
6565

6666
if (useYarn) {
67-
command = 'yarn';
67+
command = 'yarnpkg';
6868
args = ['add'];
6969
} else {
7070
command = 'npm';

0 commit comments

Comments
 (0)