bootstrap.js 1.5 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
'use strict';

const { execSync, spawn } = require('child_process');
const { resolve } = require('path');
const { existsSync } = require('fs');
const { platform } = require('os');

function shouldUseYarn() {
  try {
    execSync('yarnpkg --version', { stdio: 'ignore' });
    return true;
  } catch (e) {
    return false;
  }
}

function shouldUseNpmConcurrently() {
  try {
    const versionString = execSync('npm --version');
    const m = /^(\d+)[.]/.exec(versionString);
    // NPM >= 5 support concurrent installs
    return Number(m[1]) >= 5;
  } catch (e) {
    return false;
  }
}

const yarn = shouldUseYarn();
const windows = platform() === 'win32';
const lerna = resolve(
  __dirname,
  'node_modules',
  '.bin',
  windows ? 'lerna.cmd' : 'lerna'
);

if (!existsSync(lerna)) {
  if (yarn) {
    console.log('Cannot find lerna. Please run `yarn --check-files`.');
  } else {
    console.log(
      'Cannot find lerna. Please remove `node_modules` and run `npm install`.'
    );
  }
  process.exit(1);
}

let child;
if (yarn) {
  // Yarn does not support concurrency
  child = spawn(lerna, ['bootstrap', '--npm-client=yarn', '--concurrency=1'], {
    stdio: 'inherit',
  });
} else {
  let args = ['bootstrap'];
  if (
    // The Windows filesystem does not handle concurrency well
    windows ||
    // Only newer npm versions support concurrency
    !shouldUseNpmConcurrently()
  ) {
    args.push('--concurrency=1');
  }
  child = spawn(lerna, args, { stdio: 'inherit' });
}

child.on('close', code => process.exit(code));