printHostingInstructions.js 3.53 KB
Newer Older
1
2
3
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 *
Sophie Alpert's avatar
Sophie Alpert committed
4
5
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
6
7
8
9
10
11
 */

'use strict';

const chalk = require('chalk');
const url = require('url');
12
13
const globalModules = require('global-modules');
const fs = require('fs');
14
15
16
17
18
19
20
21

function printHostingInstructions(
  appPackage,
  publicUrl,
  publicPath,
  buildFolder,
  useYarn
) {
22
  if (publicUrl && publicUrl.includes('.github.io/')) {
23
    // "homepage": "http://user.github.io/project"
24
25
26
27
28
    const publicPathname = url.parse(publicPath).pathname;
    const hasDeployScript = typeof appPackage.scripts.deploy !== 'undefined';
    printBaseMessage(buildFolder, publicPathname);

    printDeployInstructions(publicUrl, hasDeployScript, useYarn);
29
30
  } else if (publicPath !== '/') {
    // "homepage": "http://mywebsite.com/project"
31
32
33
34
35
36
37
38
39
    printBaseMessage(buildFolder, publicPath);
  } else {
    // "homepage": "http://mywebsite.com"
    //   or no homepage
    printBaseMessage(buildFolder, publicUrl);

    printStaticServerInstructions(buildFolder, useYarn);
  }
  console.log();
40
41
42
43
  console.log('Find out more about deployment here:');
  console.log();
  console.log(`  ${chalk.yellow('http://bit.ly/2vY88Kr')}`);
  console.log();
44
45
46
}

function printBaseMessage(buildFolder, hostingLocation) {
47
48
49
50
51
52
53
54
55
56
57
58
59
  console.log(
    `The project was built assuming it is hosted at ${chalk.green(
      hostingLocation || 'the server root'
    )}.`
  );
  console.log(
    `You can control this with the ${chalk.green(
      'homepage'
    )} field in your ${chalk.cyan('package.json')}.`
  );

  if (!hostingLocation) {
    console.log('For example, add this to build it for GitHub Pages:');
60
61
    console.log();

62
    console.log(
63
64
65
      `  ${chalk.green('"homepage"')} ${chalk.cyan(':')} ${chalk.green(
        '"http://myname.github.io/myapp"'
      )}${chalk.cyan(',')}`
66
    );
67
68
69
  }
  console.log();
  console.log(`The ${chalk.cyan(buildFolder)} folder is ready to be deployed.`);
70
71
72
73
74
75
76
77
78
79
80
81
}

function printDeployInstructions(publicUrl, hasDeployScript, useYarn) {
  console.log(`To publish it at ${chalk.green(publicUrl)}, run:`);
  console.log();

  // If script deploy has been added to package.json, skip the instructions
  if (!hasDeployScript) {
    if (useYarn) {
      console.log(`  ${chalk.cyan('yarn')} add --dev gh-pages`);
    } else {
      console.log(`  ${chalk.cyan('npm')} install --save-dev gh-pages`);
82
83
    }
    console.log();
84

85
86
87
    console.log(
      `Add the following script in your ${chalk.cyan('package.json')}.`
    );
88
89
90
91
92
    console.log();

    console.log(`    ${chalk.dim('// ...')}`);
    console.log(`    ${chalk.yellow('"scripts"')}: {`);
    console.log(`      ${chalk.dim('// ...')}`);
93
94
95
96
97
98
99
100
101
102
    console.log(
      `      ${chalk.yellow('"predeploy"')}: ${chalk.yellow(
        '"npm run build",'
      )}`
    );
    console.log(
      `      ${chalk.yellow('"deploy"')}: ${chalk.yellow(
        '"gh-pages -d build"'
      )}`
    );
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
    console.log('    }');
    console.log();

    console.log('Then run:');
    console.log();
  }
  console.log(`  ${chalk.cyan(useYarn ? 'yarn' : 'npm')} run deploy`);
}

function printStaticServerInstructions(buildFolder, useYarn) {
  console.log('You may serve it with a static server:');
  console.log();

  if (!fs.existsSync(`${globalModules}/serve`)) {
    if (useYarn) {
      console.log(`  ${chalk.cyan('yarn')} global add serve`);
    } else {
      console.log(`  ${chalk.cyan('npm')} install -g serve`);
    }
122
  }
123
  console.log(`  ${chalk.cyan('serve')} -s ${buildFolder}`);
124
125
126
}

module.exports = printHostingInstructions;