You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
614 B
13 lines
614 B
5 months ago
|
const chalk = require('chalk')
|
||
|
const logger = require('./logger')
|
||
|
|
||
|
const replace = (oldThing, newThing) => {
|
||
|
logger.warn(chalk.bold.yellow('Deprecation Warning:'), '\n')
|
||
|
logger.warn(chalk.yellow(`Option ${chalk.bold(`"${oldThing}"`)} has been removed, and replaced by ${chalk.bold(`"${newThing}"`)}`), '\n')
|
||
|
logger.warn(chalk.yellow('This option will be removed in the next major version of `vue-jest`. Please update your configuration.'), '\n')
|
||
|
logger.warn(chalk.bold.yellow('Configuration Documentation:'))
|
||
|
logger.warn(chalk.yellow('https://github.com/vuejs/vue-jest'))
|
||
|
}
|
||
|
|
||
|
module.exports = { replace }
|