Remove connect-history-api-fallback and cross-spawn dependencies from react-scripts (#751) (#2320)

This commit is contained in:
Pavol Madar
2017-05-22 13:46:51 +02:00
committed by Dan Abramov
parent 7e25c9a604
commit 0d1521aabf
6 changed files with 18 additions and 5 deletions

View File

@@ -19,11 +19,11 @@ process.on('unhandledRejection', err => {
const fs = require('fs-extra');
const path = require('path');
const execSync = require('child_process').execSync;
const spawnSync = require('cross-spawn').sync;
const chalk = require('chalk');
const paths = require('../config/paths');
const createJestConfig = require('./utils/createJestConfig');
const inquirer = require('react-dev-utils/inquirer');
const spawnSync = require('react-dev-utils/crossSpawn').sync;
const green = chalk.green;
const cyan = chalk.cyan;