保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
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 }