Home / File/ print-summary.js — react Source File

print-summary.js — react Source File

Architecture documentation for print-summary.js, a javascript file in the react codebase.

Entity Profile

Relationship Graph

Source Code

#!/usr/bin/env node

'use strict';

const clear = require('clear');
const {join, relative} = require('path');
const theme = require('../theme');

module.exports = async ({build}) => {
  const commandPath = relative(
    process.env.PWD,
    join(__dirname, '../download-experimental-build.js')
  );

  clear();

  const message = theme`
    {caution An experimental build has been downloaded!}

    You can download this build again by running:
    {path   ${commandPath}} --build={build ${build}}
  `;

  console.log(message.replace(/\n +/g, '\n').trim());
};

Domain

Subdomains

Functions

Frequently Asked Questions

What does print-summary.js do?
print-summary.js is a source file in the react codebase, written in javascript. It belongs to the BabelCompiler domain, Optimization subdomain.
What functions are defined in print-summary.js?
print-summary.js defines 1 function(s): module.
Where is print-summary.js in the architecture?
print-summary.js is located at scripts/release/download-experimental-build-commands/print-summary.js (domain: BabelCompiler, subdomain: Optimization, directory: scripts/release/download-experimental-build-commands).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free