'use strict';
const chalk = require('chalk');
module.exports = function(message, test) {
if (test) {
console.log(chalk.yellow(`DEPRECATION: ${message}`));
}
};
module.exports.deprecateUI = function(ui) {
return function(message, test) {
ui.writeDeprecateLine('The deprecateUI utility has been deprecated in favor of ui.writeDeprecateLine');
test = !test;
ui.writeDeprecateLine(message, test);
};
};
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|