50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
'use strict'; /**
|
|
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
*
|
|
*/
|
|
|
|
const chalk = require('chalk');
|
|
const format = value => require('pretty-format')(value, { min: true });
|
|
|
|
const deprecatedOptions = {
|
|
preprocessorIgnorePatterns: options =>
|
|
|
|
` Option ${chalk.bold('"preprocessorIgnorePatterns"')} was replaced by ${chalk.bold('"transformIgnorePatterns"')}, which support multiple preprocessors.
|
|
|
|
Jest now treats your current configuration as:
|
|
{
|
|
${chalk.bold('"transformIgnorePatterns"')}: ${chalk.bold(`${format(options.preprocessorIgnorePatterns)}`)}
|
|
}
|
|
|
|
Please update your configuration.`,
|
|
|
|
scriptPreprocessor: options =>
|
|
|
|
` Option ${chalk.bold('"scriptPreprocessor"')} was replaced by ${chalk.bold('"transform"')}, which support multiple preprocessors.
|
|
|
|
Jest now treats your current configuration as:
|
|
{
|
|
${chalk.bold('"transform"')}: ${chalk.bold(`{".*": ${format(options.scriptPreprocessor)}}`)}
|
|
}
|
|
|
|
Please update your configuration.`,
|
|
|
|
testPathDirs: options =>
|
|
|
|
` Option ${chalk.bold('"testPathDirs"')} was replaced by ${chalk.bold('"roots"')}.
|
|
|
|
Jest now treats your current configuration as:
|
|
{
|
|
${chalk.bold('"roots"')}: ${chalk.bold(format(options.testPathDirs))}
|
|
}
|
|
|
|
Please update your configuration.
|
|
` };
|
|
|
|
|
|
module.exports = deprecatedOptions; |