build(aio): render doc-gen issues in overview dump (#22675)
Related to #22138 PR Close #22675
This commit is contained in:

committed by
Kara Erickson

parent
37fedd001c
commit
6f0dad1710
@ -1,6 +1,7 @@
|
||||
module.exports = function(log, createDocMessage) {
|
||||
return {
|
||||
name: 'howToUse',
|
||||
deprecated: true,
|
||||
transforms(doc, tag, value) {
|
||||
log.warn(createDocMessage('Deprecated `@howToUse` tag found', doc));
|
||||
log.warn('PLEASE FIX by renaming to `@usageNotes.');
|
||||
|
@ -1,6 +1,7 @@
|
||||
module.exports = function(log, createDocMessage) {
|
||||
return {
|
||||
name: 'stable',
|
||||
deprecated: true,
|
||||
transforms(doc, tag, value) {
|
||||
log.warn(createDocMessage('Deprecated `@stable` tag found', doc));
|
||||
log.warn('PLEASE REMOVE - its value is now computed.');
|
||||
|
@ -1,6 +1,7 @@
|
||||
module.exports = function(log, createDocMessage) {
|
||||
return {
|
||||
name: 'whatItDoes',
|
||||
deprecated: true,
|
||||
transforms(doc, tag, value) {
|
||||
log.warn(createDocMessage('Deprecated `@whatItDoes` tag found', doc));
|
||||
log.warn('PLEASE FIX by adding the content of this tag as the first paragraph of the `@description` tag.');
|
||||
|
Reference in New Issue
Block a user