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
390 B
13 lines
390 B
var log = require('npmlog')
|
|
|
|
var deprecated = {}
|
|
var deprWarned = {}
|
|
module.exports = function deprCheck (data) {
|
|
if (deprecated[data._id]) data.deprecated = deprecated[data._id]
|
|
if (data.deprecated) deprecated[data._id] = data.deprecated
|
|
else return
|
|
if (!deprWarned[data._id]) {
|
|
deprWarned[data._id] = true
|
|
log.warn('deprecated', '%s: %s', data._id, data.deprecated)
|
|
}
|
|
}
|